File: flip.cpp

package info (click to toggle)
plink 1.07%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,036 kB
  • sloc: cpp: 69,728; makefile: 123; sh: 12
file content (499 lines) | stat: -rw-r--r-- 11,790 bytes parent folder | download | duplicates (6)
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499


//////////////////////////////////////////////////////////////////
//                                                              //
//           PLINK (c) 2005-2008 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 <fstream>
#include <sstream>
#include <iomanip>
#include <cmath>
#include <algorithm>
#include <map>

#include "plink.h"
#include "stats.h"
#include "helper.h"
#include "options.h"

using namespace std;

void Plink::flipStrand()
{

  ////////////////////////////
  // Look-up table by SNP name

  map<string,Locus*> mlocus;
  map<string,Locus*>::iterator ilocus;
  map<string,int> mnlocus;
  map<string,int>::iterator inlocus;

  vector<Locus*>::iterator loc = locus.begin();
  while ( loc != locus.end() )
    {
      mlocus.insert(make_pair( (*loc)->name, *loc) );
      loc++;
    }  


  ////////////////////////////
  // Look-up table by SNP name

  map<string,Individual*> mpeople;
  
  
  //////////////////////////////////////////////////////////
  // Performing this for all individuals, or just a subset?
  set<Individual*> pflip;
  
  if ( par::flip_subset )
    {

      if ( ! par::SNP_major ) 
	Ind2SNP();
      
      for (int i=0; i<n; i++)
	{
	  Individual * person = sample[i];
	  string id = person->fid + "_" + person->iid;
	  mpeople.insert( make_pair( id , person ) );
	}

      for (int l=0; l<nl_all; l++)
	{
	  mnlocus.insert( make_pair( locus[l]->name , l ) );
	}
      
      checkFileExists(par::flip_subset_file);  
      printLOG("Reading individuals to flip strand for [ " 
	       + par::flip_subset_file + " ] \n");
      ifstream IN2(par::flip_subset_file.c_str(),ios::in);
      int pcount1 = 0;
      int pcount2 = 0;

      while ( ! IN2.eof() )
	{
	  
	  string fid, iid;
	  IN2 >> fid >> iid;
	  string id = fid + "_" + iid;
	  if ( fid == "" ) 
	    continue;
	  ++pcount1;
	  map<string,Individual*>::iterator ipeople = mpeople.find( id );
	  if ( ipeople == mpeople.end() )
	    continue;
	  pflip.insert( ipeople->second );
	  ++pcount2;
	}
      printLOG("Read " + int2str(pcount1) + " individuals, of whom " 
	       + int2str(pcount2) + " were found, to flip\n");
      IN2.close();
    }
  

  ///////////////////////
  // Read in SNPs to flip

  checkFileExists(par::flip_file);  
  printLOG("Reading SNPs to flip strand from [ " 
	   + par::flip_file + " ] \n");
  ifstream INFILE(par::flip_file.c_str(),ios::in);
  INFILE.clear();
  int counter = 0;

  while (!INFILE.eof())
    {
      string m;
      INFILE >> m;
      if (m=="") continue;

      if ( par::flip_subset )
	{
	  inlocus = mnlocus.find(m);
	  if (inlocus != mnlocus.end() )
	    {
	      ++counter;
	      for (int i=0; i<n; i++)
		{
		  Individual * person = sample[i];
		  if ( pflip.find( person ) != pflip.end() )
		    {
		      int l = inlocus->second;
		      if ( SNP[ l ]->one[ i ] == 
			   SNP[ l ]->two[ i ] )
			{
			  SNP[ l ]->one[ i ] = ! SNP[ l ]->one[ i ];
			  SNP[ l ]->two[ i ] = ! SNP[ l ]->two[ i ];
			}
		    }		  
		}
	    }
	}
      else
	{
	  
	  ilocus = mlocus.find(m);
	  if (ilocus != mlocus.end())
	    {
	      counter++;
	      
	      // Flip strand
	      
	      Locus * loc = ilocus->second;
	      
	      if ( loc->allele1 == "A" ) loc->allele1 = "T";
	      else if ( loc->allele1 == "C" ) loc->allele1 = "G";
	      else if ( loc->allele1 == "G" ) loc->allele1 = "C";
	      else if ( loc->allele1 == "T" ) loc->allele1 = "A";
	      else if ( loc->allele1 == "1" ) loc->allele1 = "4";
	      else if ( loc->allele1 == "2" ) loc->allele1 = "3";
	      else if ( loc->allele1 == "3" ) loc->allele1 = "2";
	      else if ( loc->allele1 == "4" ) loc->allele1 = "1";
	      
	      if ( loc->allele2 == "A" ) loc->allele2 = "T";
	      else if ( loc->allele2 == "C" ) loc->allele2 = "G";
	      else if ( loc->allele2 == "G" ) loc->allele2 = "C";
	      else if ( loc->allele2 == "T" ) loc->allele2 = "A";
	      else if ( loc->allele2 == "1" ) loc->allele2 = "4";
	      else if ( loc->allele2 == "2" ) loc->allele2 = "3";
	      else if ( loc->allele2 == "3" ) loc->allele2 = "2";
	      else if ( loc->allele2 == "4" ) loc->allele2 = "1";
	      
	    }
	}
      // Next SNP
    }

  INFILE.close();
  
  printLOG("Flipped strand of " + int2str(counter) + " SNPs\n");
  
}



void Plink::calcFlipScan()
{
  
  ///////////////////////////////////////////
  // Screen for SNPs that appear to have been
  // flipped in one dataset versus another, 
  // based on patterns of LD.  Just use a simple
  // sliding window, keeping track of the number
  // and magnitude of concordant versus discordant
  // LD pairs

  
  

  ofstream OUT1;
  string f = par::output_file_name + ".flipscan";
  OUT1.open(f.c_str(),ios::out);
  OUT1.precision(3);

  printLOG("Writing FS statistics to [ " + f + " ] \n");

  
  OUT1 << setw(6) << "CHR" << " "
     << setw(par::pp_maxsnp) << "SNP"  << " "
     << setw(12) << "BP" << " "
     << setw(4) << "A1" << " "
     << setw(4) << "A2" << " "
     << setw(8) << "F"  << " "
     << setw(6) << "POS" << " "
     << setw(8) << "R_POS" << " "
     << setw(6) << "NEG" << " "
     << setw(8) << "R_NEG" << " "
     << "NEGSNPS\n";

  ofstream OUT1V;
  if ( par::flip_scan_verbose )
    {
      string f = par::output_file_name + ".flipscan.verbose";
      OUT1V.open(f.c_str(),ios::out);
      OUT1V.precision(3);
      printLOG("Writing FS verbose output to [ " + f + " ] \n");
      
      OUT1V << setw(6) << "CHR_INDX" << " "
	  << setw(par::pp_maxsnp) << "SNP_INDX"  << " "
	  << setw(12) << "BP_INDX" << " "
	  << setw(4) << "A1_INDX" << " "	
	  << setw(par::pp_maxsnp) << "SNP_PAIR"  << " "
	  << setw(12) << "BP_PAIR" << " "
	  << setw(4) << "A1_PAIR" << " "
	  << setw(8) << "R_A" << " "
	  << setw(8) << "R_U" << "\n";
	
    }

  
  ///////////////////////////
  // Index locus  
  
  for (int l1=0; l1<nl_all; l1++)  
    {

      int cntPlus = 0;
      int cntNeg = 0;

      double scorePlus = 0;
      double scoreNeg = 0;

      stringstream verbose_buffer;
      verbose_buffer.precision(3);
      
      string snplist = "";

      // Second locus
	  
      for (int l2=0; l2<nl_all; l2++)      
	{
	  
	  // No point in testing the same SNP

	  if ( l1 == l2 ) 
	    continue;
	  
	  // Outside of window?
	  
	  if ( l2 - l1 >= par::disp_r_window_snp )
	    continue;
	  
	  if ( l1 - l2 >= par::disp_r_window_snp )
	    continue;
	  
	  if ( locus[l2]->chr != locus[l1]->chr ) 
	    continue;
	  
	  if ( locus[l2]->bp - locus[l1]->bp 
	       > par::disp_r_window_kb )
	    continue;
	  
	  if ( locus[l1]->bp - locus[l2]->bp 
	       > par::disp_r_window_kb )
		continue;
	  
	  
	  //////////////////////////////////////
	  // Calculate correlation (un-squared)
	  // in cases and controls separately

	  setFlagToCase();
	  double rCase = correlation2SNP(l1,l2,false,false,true);
	  
	  setFlagToControl();
	  double rControl = correlation2SNP(l1,l2,false,false,true);

	  // Keep track of score
	  
	  bool sameDirection = true;
	  if ( ( rCase > 0 && rControl < 0 ) || 
	       ( rControl > 0 && rCase < 0 ) )
	    sameDirection = false;
	  
	  bool aboveThreshold = true;
	  
	  if ( ( rCase > - par::flip_scan_threshold && rCase < par::flip_scan_threshold ) &&
	       ( rControl > - par::flip_scan_threshold && rControl < par::flip_scan_threshold ) )
	    aboveThreshold = false;

	  if ( ! realnum( rCase ) ) 
	    aboveThreshold = false;

	  if ( ! realnum( rControl ) ) 
	    aboveThreshold = false;
	  
	  if ( aboveThreshold ) 
	    {
	      if ( sameDirection ) 
		{
		  ++cntPlus;
		  if ( rCase > 0 ) 
		    scorePlus += ( rCase + rControl ) / 2.0;
		  else
		    scorePlus += ( -rCase - rControl ) / 2.0;
		}
	      else
		{
		  ++cntNeg;
		  if ( rCase > 0 ) 
		    scoreNeg += ( rCase - rControl ) / 2.0;
		  else
		    scoreNeg += ( -rCase + rControl ) / 2.0;

		  if ( snplist == "" ) 
		    snplist = locus[l2]->name;
		  else
		    snplist += "|" + locus[l2]->name;
		  
		}
	   
	      if ( par::flip_scan_verbose )
		{
		  verbose_buffer << setw(6) << chromosomeName( locus[l1]->chr ) << " "
				 << setw(par::pp_maxsnp) << locus[l1]->name  << " "
				 << setw(12) << locus[l1]->bp << " "
				 << setw(4) << locus[l1]->allele1 << " "	
				 << setw(par::pp_maxsnp) << locus[l2]->name  << " "
				 << setw(12) << locus[l2]->bp << " "
				 << setw(4) << locus[l2]->allele1 << " "
				 << setw(8) << rCase << " "
				 << setw(8) << rControl << "\n";
		  
		}

	    }
	  
   
	 	  
	  
	  // Consider the paired SNP
	}
      
      
      // Calculate FS score for this index SNP

      
      // Display
      
      OUT1 << setw(6) << locus[l1]->chr  << " " 
	 << setw(par::pp_maxsnp) << locus[l1]->name  << " " 
	 << setw(12) << locus[l1]->bp << " "
	 << setw(4) << locus[l1]->allele1 << " "
	 << setw(4) << locus[l1]->allele2 << " "
	 << setw(8) << locus[l1]->freq  << " "
	 << setw(6) << cntPlus << " ";

      if ( cntPlus == 0 ) 
	OUT1 << setw(8) << "NA" << " ";
      else
	OUT1 << setw(8) << scorePlus/(double)cntPlus << " ";
	  
      OUT1 << setw(6) << cntNeg << " ";

      if ( cntNeg == 0 ) 
	OUT1 << setw(8) << "NA" << " "; 
      else
	OUT1 << setw(8) << scoreNeg/(double)cntNeg << " "; 
      
      OUT1 << snplist << "\n";

      if ( par::flip_scan_verbose )
	{
	  if ( cntNeg > 0 ) 
	    OUT1V << verbose_buffer.str();
	}


    } // Consider the next index SNP
  
  OUT1.close();
      
  if ( par::flip_scan_verbose )
    OUT1V.close();
  
}



void Plink::setReferenceAllele()
{

  ////////////////////////////
  // Look-up table by SNP name

  map<string,int> mnlocus;
  map<string,int>::iterator inlocus;

  for (int l=0; l<nl_all; l++)
    mnlocus.insert(make_pair( locus[l]->name, l) );
  

  ////////////////
  // Read in SNPs 

  checkFileExists( par::set_reference_allele_file ); 
  printLOG("Reading SNPs to set reference allele [ "
	   + par::set_reference_allele_file + " ] \n");
  ifstream INFILE(par::set_reference_allele_file.c_str(),ios::in);
  INFILE.clear();

  int counter_changed = 0;
  int counter_problem = 0;
  int counter_unchanged = 0;
  
  while (!INFILE.eof())
    {
      string m, ref;
      INFILE >> m >> ref;

      if (m=="") continue;
      
      inlocus = mnlocus.find(m);
      
      if (inlocus != mnlocus.end() )
	{
	  
	  int l = inlocus->second;
	  
	  // Check alleles
	  if ( ref == locus[l]->allele1 )
	    {
	      ++counter_unchanged;
	      continue;
	    }
	  
	  if ( ref != locus[l]->allele2 )
	    {
	      ++counter_problem;
	      continue;
	    }
	  

	  ++counter_changed;

	  // Swap alleles, recode genotypes internally

	  string tmp = locus[l]->allele2;
	  locus[l]->allele2 = locus[l]->allele1;
	  locus[l]->allele1 = tmp;

// 	  cout << "changed " << m << " ref= " << ref << " now = "  
// 	       << locus[l]->allele1 << " " << locus[l]->allele2 << "\n";

	  for (int i=0; i<n; i++)
	    {
	      
	      if ( SNP[ l ]->one[ i ] == 
		   SNP[ l ]->two[ i ] )
		{
		  SNP[ l ]->one[ i ] = ! SNP[ l ]->one[ i ];
		  SNP[ l ]->two[ i ] = ! SNP[ l ]->two[ i ];
		}
	      
	    }
	}
      
      
      // Next SNP
    }

  INFILE.close();
  
  printLOG("Set reference alleles for " + int2str(counter_changed+counter_unchanged) + " SNPs, ");
  printLOG(int2str(counter_changed) + " different from minor allele\n");
  if (counter_problem>0)
    printLOG("Also, " + int2str(counter_problem) + " couldn't be changed due to bad allele codes\n");
  
}