File: mishap.cpp

package info (click to toggle)
plink 1.07%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,132 kB
  • sloc: cpp: 72,375; makefile: 123; sh: 12
file content (466 lines) | stat: -rw-r--r-- 11,226 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466


//////////////////////////////////////////////////////////////////
//                                                              //
//           PLINK (c) 2005-2006 Shaun Purcell                  //
//                                                              //
// This file is distributed under the GNU General Public        //
// License, Version 2.  Please see the file COPYING for more    //
// details                                                      //
//                                                              //
//////////////////////////////////////////////////////////////////


#include <iostream>
#include <iomanip>
#include <string>
#include "options.h"
#include "helper.h"
#include "plink.h"
#include "phase.h"
#include "stats.h"

extern Plink * PP;

void Plink::performMisHapTests()
{

  printLOG("\nPerforming haplotype-based tests for non-random missingness\n");
    
  if (!par::SNP_major) 
    Ind2SNP();
  
  // Consider 1 SNP at a time
  // Form haplotypes based on the surrounding SNPs
  // Form phenotype based on the patterns of missingness for test SNP
  // Is there any association?

  bool old_silent = par::silent;

  string f = par::output_file_name + ".missing.hap";
  haplo->HTEST.open(f.c_str(),ios::out);
  haplo->HTEST.precision(3);
  printLOG("Writing haplotype-based missingness results to [ " + f + " ] \n");
 
  haplo->HTEST << setw(par::pp_maxsnp) << "SNP" << " " 
	       << setw(10) << "HAPLOTYPE" << " "
	       << setw(8) << "F_0" << " "
	       << setw(8) << "F_1" << " " 
	       << setw(20) << "M_H1" << " "
	       << setw(20) << "M_H2" << " " 
	       << setw(8) << "CHISQ" << " "
	       << setw(8) << "P" << " "
	       << "FLANKING" << "\n";
 
  //////////////////////////////////
  // Set up a single haplotype entry

  haplo->new_pred_locus.resize(1);
    
  // Make new entry in MAP file
  Locus * loc = new Locus;
  loc->name = "";
  loc->chr = 0;
  loc->pos = 1;
  loc->bp = 1;
  loc->allele1 = "1";
  loc->allele2 = "2";
  
  // Add this single dummy locus to the list
  haplo->new_map.clear();
  haplo->new_map.push_back(loc);


  vector<CSNP*>::iterator s = SNP.begin();
  int l=0;
  
  while ( s != SNP.end() )
    {

      if (!par::silent)
	cout << l+1 << " of " << nl_all << " SNPs tested        \r";
	  

      /////////////////////////////////
      // Currently, skipped haplod SNPs
      
      if (par::chr_sex[locus[l]->chr] || 
	  par::chr_haploid[locus[l]->chr] )
	{
	  s++;
	  l++;
	  continue;
	}


      ////////////////////////////////////////////
      // Form phenotype (missingness for this SNP)

      vector<Individual*>::iterator person = sample.begin();
      vector<bool>::iterator i1 = (*s)->one.begin();
      vector<bool>::iterator i2 = (*s)->two.begin();
      int nmiss=0;

      while ( person != sample.end() )
	{
	  
	  // Missing at test SNP?
	  if ( *i1 && ! *i2 )
	    {
	      nmiss++;
	      (*person)->aff = true;
	    }
	  else
	    (*person)->aff = false;
	  
	  // Include all individuals in this analysis
	  (*person)->missing = false;
	  
	  i1++;
	  i2++;
	  person++;
	}      
      
      
      ////////////////////////////////////////
      // Enough missingness to warrant a test?
 
      if (nmiss<5) 
	{
	  s++;
	  l++;
	  continue;
	}
      

      
      ///////////////////////
      // Form test haplotypes
      
      haplo->reset();
      
      // Add which allele to look for (corresponding to allele1)

      vector<int> tmp;
      
      for ( int i = l - par::mishap_window ; 
	    i <= l + par::mishap_window ; i++ )
	{
	  if ( i >= 0 && i < nl_all && i != l ) 
	    if ( locus[i]->chr == locus[l]->chr )
	      tmp.push_back(i);
	}
      
      haplo->new_pred_locus[0] = tmp;
      haplo->new_map[0] = locus[l];
      
      ///////////////////
      // Phase haplotypes
      
      par::silent = true;
      haplo->new_pred_allele = listPossibleHaplotypes(*this,
						      haplo->new_pred_locus[0]);
      haplo->phaseAllHaplotypes(false,*PP->pperm);
      haplo->hname = locus[l]->name;
      par::silent = old_silent;
      
      ///////////////////////////////////////
      // Test association with each haplotype

      map<int,int> tests;
      
      for (int h=0; h < haplo->nh; h++)
	{

	  if (haplo->f[h] >= par::min_af)
	    {
	      tests.clear();

	      for (int h2=0; h2 < haplo->nh; h2++)
		{
		  if (haplo->f[h2] >= par::min_af)
		    {
		      if (h==h2) 
			{
			  tests.insert(make_pair(h2,0));
			}
		      else tests.insert(make_pair(h2,1));
		    }
		}
	      

	      //////////////////////
	      // Test each haplotype
	      
	      int nt = 2;

	      vector<double> caseN(nt,0);
	      vector<double> controlN(nt,0);
  
	      // Consider each individual
	      for (int i=0; i<n; i++)
		{
		  
		  Individual * person = sample[i];
		  
		  if ( person->aff )
		    {
		      
		      for (int z = 0 ; z < haplo->hap1[i].size(); z++)
			{
			  
			  map<int,int>::iterator i1 = tests.find(haplo->hap1[i][z]);
			  map<int,int>::iterator i2 = tests.find(haplo->hap2[i][z]);
			  
			  if ( i1 != tests.end() )
			    {
			      if (!haplo->ambig[i]) 
				caseN[i1->second]++;
			      else
				caseN[i1->second] += haplo->pp[i][z];
			    }
			  
			  if ( i2 != tests.end() )
			    {
			      if (!haplo->ambig[i]) 
				caseN[i2->second]++;
			      else
				caseN[i2->second] += haplo->pp[i][z];
			    }
			  
			}
		    }
		  // Or control?
		  else 
		    {
		      for (int z = 0 ; z < haplo->hap1[i].size(); z++)
			{
			  
			  map<int,int>::iterator i1 = tests.find(haplo->hap1[i][z]);
			  map<int,int>::iterator i2 = tests.find(haplo->hap2[i][z]);
			  
			  if ( i1 != tests.end() )
			    {
			      if (!haplo->ambig[i]) 
				controlN[i1->second]++;
			      else
				controlN[i1->second] += haplo->pp[i][z];
			    }
			  
			  if ( i2 != tests.end() )
			    {
			      if (!haplo->ambig[i]) 
				controlN[i2->second]++;
			      else
				controlN[i2->second] += haplo->pp[i][z];
			    }
			  
			}  	  
		    }
		  
		  
		} // next individual
	      
	      
	      haplo->HTEST << setw(par::pp_maxsnp) << haplo->hname << " ";
	      
		  
	      // Find test haplotype
	      int hh=0;
	      map<int,int>::iterator i1 = tests.begin();
	      while ( i1 != tests.end() )
		{
		  if ( i1->second == 0 )
		    hh = i1->first;
		  i1++;
		}

	      haplo->HTEST << setw(10) << haplo->haplotypeName(hh) << " ";

	      if ( caseN[0] + caseN[1] == 0 )
		haplo->HTEST << setw(8) << "NA" << " ";
	      else
		haplo->HTEST << setw(8) << caseN[0] / ( caseN[0] + caseN[1] ) << " ";
	      
	      if ( controlN[0] + controlN[1] == 0 )
		haplo->HTEST << setw(8) << "NA" << " ";
	      else
		haplo->HTEST << setw(8) << controlN[0] / ( controlN[0] + controlN[1] ) << " ";
	      
	      haplo->HTEST << setw(20) << (dbl2str(caseN[0])+"/"+dbl2str(controlN[0])) << " "
			   << setw(20) << (dbl2str(caseN[1])+"/"+dbl2str(controlN[1])) << " ";
	      
	      
	      vector<double> rowT(nt);
	      double caseT = 0;
	      double controlT = 0;
	      
	      for (int h=0; h<nt; h++)
		{
		  rowT[h] = caseN[h] + controlN[h];
		  caseT += caseN[h];
		  controlT += controlN[h];       
		}
	      
	      double chi2 = 0;
	      for (int h=0; h<nt; h++)
		{
		  double exp = ( rowT[h] * caseT ) / (caseT + controlT);
		  chi2 += ( ( caseN[h] - exp ) * ( caseN[h] - exp ) ) / exp ; 
		  
		  exp = ( rowT[h] * controlT ) / (caseT + controlT);
		  chi2 += ( ( controlN[h] - exp ) * ( controlN[h] - exp ) ) / exp ;  
		}
	      
	      if ( realnum(chi2) )
		haplo->HTEST << setw(8) << chi2 << " "
			     << setw(8) << chiprobP(chi2,nt-1) << " ";
	      else
		haplo->HTEST << setw(8) << "NA" << " "
			     << setw(8) << "NA" << " ";
	      
	      for (int snps=0; snps<haplo->ns-1; snps++)
		haplo->HTEST << locus[haplo->S[snps]]->name << "|";
	      
	      haplo->HTEST << locus[haplo->S[haplo->ns-1]]->name << "\n";
	      
	      	    
	    } // next haplotype
	}
    
      //////////////////////
      // Heterozygsote test

      double caseHET=0;
      double controlHET=0;
      double caseHOM=0;
      double controlHOM=0;
      
      
      // Consider each individual
      for (int i=0; i<n; i++)
	{
	  
	  Individual * person = sample[i];
	  
	  if (person->aff )
	    {
	      
	      for (int z = 0 ; z < haplo->hap1[i].size(); z++)
		{
		 		  
		  if ( haplo->hap1[i][z] != haplo->hap2[i][z] )
		    {
		      if (!haplo->ambig[i]) 
			caseHET++;
		      else
			caseHET += haplo->pp[i][z];			      
		    }
		  else
		    {
		      if (!haplo->ambig[i]) 
			caseHOM++;
		      else
			caseHOM += haplo->pp[i][z];			      
		      
		    }
		  
		}
	    }
	  // Or control?
	  else 
	    {
	      for (int z = 0 ; z < haplo->hap1[i].size(); z++)
		{
		  
		  if ( haplo->hap1[i][z] != haplo->hap2[i][z] )
		    {
		      if (!haplo->ambig[i]) 
			controlHET++;
		      else
			controlHET += haplo->pp[i][z];			      
		    }
		  else
		    {
		      if (!haplo->ambig[i]) 
			controlHOM++;
		      else
			controlHOM += haplo->pp[i][z];			      
		      
		    }
		  
		}  	  
	    }
	  
	  
	} // next individual
      
      double chi2 = 0;

      double total = caseHET + caseHOM + controlHET + controlHOM;

      double total_case = caseHET + caseHOM;
      double total_control = controlHET + controlHOM;
      double total_het = caseHET + controlHET;
      double total_hom = caseHOM + controlHOM;

      double exp_caseHET    = ( total_case * total_het ) / total;
      double exp_controlHET = ( total_control * total_het ) / total;
      double exp_caseHOM    = ( total_case * total_hom ) / total;
      double exp_controlHOM = ( total_control * total_hom ) / total;
      
      chi2 += ( ( caseHET - exp_caseHET ) * ( caseHET - exp_caseHET ) ) / exp_caseHET
	+ ( ( caseHOM - exp_caseHOM ) * ( caseHOM - exp_caseHOM ) ) / exp_caseHOM
	+ ( ( controlHET - exp_controlHET ) * ( controlHET - exp_controlHET ) ) / exp_controlHET
	+ ( ( controlHOM - exp_controlHOM ) * ( controlHOM - exp_controlHOM ) ) / exp_controlHOM;
	
    

      haplo->HTEST << setw(par::pp_maxsnp) << haplo->hname << " ";
	      
      haplo->HTEST << setw(10) << "HETERO" << " ";
      
      if (  caseHET + caseHOM == 0 )
	haplo->HTEST << setw(8) << "NA" << " ";
      else
	haplo->HTEST << setw(8) << caseHET / ( caseHET + caseHOM ) << " ";
      
      
      if ( controlHET + controlHOM == 0 )
	haplo->HTEST << setw(8) << "NA" << " ";
      else
	haplo->HTEST << setw(8) << controlHET / ( controlHET + controlHOM ) << " ";
      
      haplo->HTEST << setw(20) << (dbl2str(caseHET)+"/"+dbl2str(controlHET)) << " "
		   << setw(20) << (dbl2str(caseHOM)+"/"+dbl2str(controlHOM)) << " ";

      if ( realnum(chi2) )
	haplo->HTEST << setw(8) << chi2 << " "
		     << setw(8) << chiprobP(chi2,1) << " ";
      else
	haplo->HTEST << setw(8) << "NA" << " "
		     << setw(8) << "NA" << " ";
      
      for (int snps=0; snps<haplo->ns-1; snps++)
	haplo->HTEST << locus[haplo->S[snps]]->name << "|";
      
      haplo->HTEST << locus[haplo->S[haplo->ns-1]]->name << "\n";

      
      // Next test SNP

      s++;
      l++;

    } 
	
  if (!par::silent)
    cout << "\n";
      
  
  // Shut down results file
  haplo->HTEST.close();
  
  
}