File: bmerge.cpp

package info (click to toggle)
plink 1.07%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,040 kB
  • sloc: cpp: 69,728; makefile: 123; sh: 12
file content (902 lines) | stat: -rw-r--r-- 22,438 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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902


//////////////////////////////////////////////////////////////////
//                                                              //
//           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 <iomanip>
#include <fstream>
#include <sstream>
#include <map>
#include <algorithm>
#include <bitset>
#include "plink.h"
#include "options.h"
#include "helper.h"


void Plink::mergeBinaryData()
{
  
  // Function to merge a text file with an exisiting data set
  // either SNP-major or individual-major modes
  
  if (!par::merge_list)
    {
      printLOG( "Using merge mode " + int2str( par::merge_mode ) + " : ");
      if (par::merge_mode==1) printLOG("consensus call (default)\n");
      else if (par::merge_mode==2) printLOG("overwrite if missing in original\n");
      else if (par::merge_mode==3) printLOG("overwrite unless missing in new\n");
      else if (par::merge_mode==4) printLOG("overwrite none\n"); 
      else if (par::merge_mode==5) printLOG("overwrite all\n");
      else if (par::merge_mode==6) printLOG("diff mode: all differences\n");
      else if (par::merge_mode==7) printLOG("diff mode: non-missing differences\n");

      diff_overlap = 0;
      diff_nonmissing_overlap = 0;
      diff_concordant_overlap = 0;

    }
  
  // We've already loaded in the first file
  // Do not overwrite any existing phenotype information
  
  checkFileExists(par::merge_bedfile);
  checkFileExists(par::merge_bimfile);
  checkFileExists(par::merge_famfile);
  
  // Make hash of original SNP names
  
  map<string,int> mlocus;
  for (int l=0;l<nl_all;l++)
    mlocus.insert(make_pair(locus[l]->name,l));
  map<string,int>::iterator ilocus;
  
  
  // A temporary hash for the names of any markers that
  // do not match in terms of strand
  set<string> misstrand;
  map<string,int> misstrand_dummy;
  bool fatal_error = false;


  ///////////////////////////////////////
  // .bim 

  vector<Locus> ordered(0);
  map<string,bool> exists;
  vector<Locus*> locus2(0);
  set<string> flip_alleles;

  ifstream MAP(par::merge_bimfile.c_str(), ios::in);
  MAP.clear();

  int exist_cnt=0;
  
  int c=0;
  while(!MAP.eof())
    {
      
      Locus * loc = new Locus;

      long int inc;

      MAP >> loc->chr   // will automatically by numeric
	  >> loc->name 
	  >> loc->pos   // will automatically be in M units
	  >> loc->bp     
	  >> loc->allele1
	  >> loc->allele2;
      
                  
      inc = loc->bp;
            
      // Use the frequency slot temporarily to 
      // store order information
      loc->freq = c++;
      
      // Check that cM/M specification looks correct, if 
      // we want to perform a plink-based analysis
      if (par::plink && (!par::cm_map) && (loc->pos > 50) )
	error("Looks like you need to specify --cm ??");
      
      // Convert cM to M map distances
      if (par::cm_map) loc->pos /= 100;

      // Including all loci in merge-mode
      if (loc->name!="") 
	{
	  
	  ilocus = mlocus.find(loc->name);
	      

	  ///////////////////////////////////////////////////
	  // Check whether or not this Locus already exists?
	  
	  if (ilocus != mlocus.end())
	    {
	      
	      Locus * loc2 = locus[ilocus->second];
	      
	      // Check same chromosome and positions, etc
	      if ( loc2->chr != loc->chr )
		{
		  cerr << "Warning: different chromosome for " 
		       << loc->name << "\n";
		  loc->chr = loc2->chr;
		}
	      
	      // Check same chromosome and positions, etc
	      if ( loc2->bp != loc->bp )
		{
		  cerr << "Warning: different physical position for " 
		       << loc->name << "\n";
		  loc->bp = loc2->bp;		  
		}
	      
	      if ( loc2->pos != loc->pos )
		{
		  cerr << "Warning: different genetic position for " 
		       << loc->name << "\n";
		  loc->pos = loc2->pos;		  
		}
	      
	      exists[loc->name] = true;
	      exist_cnt++;
	      locus2.push_back(loc2);
	      
	      // Keep the new file order (would have been in freq)
	      int t = (int)loc->freq;
	      
	      if ( loc2->allele1 == "" ) 
		loc2->allele1 = par::missing_genotype;
	      
	      if ( loc2->allele2 == "" ) 
		loc2->allele2 = par::missing_genotype;
	      
	      /////////////////////////////////////////
	      // Add allele names to list, if needed
	      // and check if allele codes need flipping?
	      // e.g. if A/C SNP in memory but C/A in file?
	      // or had one allele missing
	      // and check that alleles match up correctly
	      
	      // 0 A   A 0  ->   0 A + flip 
	      // 0 0   0 0  ->   0 0 
	      // 0 0   0 A  ->  {0 A}
	      // 0 0   A B  ->  {A B}
	      // 0 A   0 A  ->   0 A
	      // 0 A   0 B  ->  {B A} + flip
	      // 0 A   A B  ->  {B A} + flip
	      // 0 A   B A  ->  {B A} 
	      // 0 A   0 0  ->   0 A
	      // A B   A B  ->   A B
	      // A B   B A  ->   A B + flip
	      // A B   0 A  ->   A B + flip 
	      // A B   0 0  ->   A B
	      
	      // 1) Are there any empty slots in the existing allele? 
	      //    If so, fill them in with any new alleles
	      
	      // 2) Do we have a strand problem? 
	      
	      // 3) Or do we need a flip? 
	      
	      
	      // New codes
	      
	      string one = loc->allele1;
	      string two = loc->allele2;
	            
//     	      cout << "LOCUS " << loc->name << " OLD, NEW = [" 
//     		   << loc2->allele1 << "] [" 
//     		   << loc2->allele2 << "]    [" 
//     		   << one << "] [" 
//     		   << two << "]\n"; 
	      
	      set<string> alleleCount;

	      if ( one != par::missing_genotype )
		alleleCount.insert( one );
	      if ( two != par::missing_genotype )
		alleleCount.insert( two );
	      if ( loc2->allele1 != par::missing_genotype )
		alleleCount.insert( loc2->allele1 );
	      if ( loc2->allele2  != par::missing_genotype )
		alleleCount.insert( loc2->allele2 );
	      
	      // More than 2 obseved alleles? 

	      if ( alleleCount.size() > 2 ) 
		{
		  misstrand.insert(loc2->name);
		  fatal_error = true;
		}
	      else
		{
		  
		  //////////////////////////////
		  // 1) Fill in empty slots
		  
		  // Fill slot 2 first (i.e. 0 A code for monomorphic, not A 0)
		  
		  // If first new allele is not missing...
		  if (one!=par::missing_genotype)
		    {
		      // ...and not already listed
		      if (one!=loc2->allele1 && one!=loc2->allele2)
			{
			  // ...then add to first empty slot
			  if(loc2->allele2=="" || loc2->allele2==par::missing_genotype)
			    loc2->allele2=one;
			  else if(loc2->allele1=="" || loc2->allele1==par::missing_genotype)
			    loc2->allele1=one;
			}
		    }
		  
		  if (two!=one && two!=par::missing_genotype)
		    // ...and not already listed
		    if (two!=loc2->allele1 && two!=loc2->allele2)
		      {
			// ...then add to first empty slot
			if(loc2->allele2=="" || loc2->allele2==par::missing_genotype) 
			  loc2->allele2=two;
			else if(loc2->allele1=="" || loc2->allele1==par::missing_genotype ) 
			  loc2->allele1=two;
		      }
		  
		  
		  //////////////////////////////
		  // 2) Need a flip?
		  
		  if ( ( one == loc2->allele2 && one != par::missing_genotype ) ||
		       ( two == loc2->allele1 && two != par::missing_genotype ) ||
		       ( one != loc2->allele1 && one != par::missing_genotype && loc2->allele1 != par::missing_genotype ) || 
		       ( two != loc2->allele2 && two != par::missing_genotype && loc2->allele2 != par::missing_genotype ) )
		    {
		      
		      if ( one == loc2->allele2 || two == loc2->allele1 ) 
			{
			  flip_alleles.insert(loc2->name);
			  
			}
		      else 
			{
			  
			  //////////////////////////////
			  // 3) Strand, wrong coding?
			  
			  misstrand.insert(loc2->name);
			  fatal_error = true;
			}
		    }
	      
		  
		}
	      
	      // Clean up what we do not need
	      delete loc;

	      // Replace with old locus (but swap back in new file position)
	      loc = loc2;
	      loc->freq = t;
	      
	    }
	  else 
	    {
	      // Locus does not exist -- add to locus list
	      exists[loc->name] = false;
	      locus2.push_back(loc);
	    }
	  
	  
	  ordered.push_back(*loc);
	}
      
      
    }

  MAP.clear();
  MAP.close();
  

   
  ///////////////////////////////////////////////////////
  // Did we encounter any fatal errors from flipped SNPs? 
   
  if (fatal_error)
    {
      
      ofstream MSNP;
      string f = par::output_file_name+".missnp";
      MSNP.open(f.c_str(), ios::out);
      set<string>::iterator ilocus;
      
      for ( ilocus = misstrand.begin() ; ilocus != misstrand.end() ; ilocus++)
	{
	  MSNP << *ilocus << "\n";
	}
      MSNP.close();
      printLOG("\nFound " + int2str(misstrand.size()) + " SNPs that do not match in terms of allele codes\n");
      printLOG("Might include strand flips, although flipped A/T and C/G SNPs will be undetected)\n");
      printLOG("Writing problem SNPs to [ " + f + " ]\n");
      error("Stopping due to mis-matching SNPs -- check +/- strand?");
    }
  

  
  if (!par::merge_list)
    {
      printLOG("\n" +int2str(locus2.size()) + 
	       " markers to be merged from [ " +par::merge_bimfile + " ]\n");
      printLOG("Of these, "+int2str( locus2.size()-exist_cnt ) + " are new, " +
	       int2str( exist_cnt ) +  " already exist in current data\n");
    }



  ///////////////////////////////////////////////
  // Build ordered table, so that genotypes can be inserted 
  // in correct order; then swap locus file over
  
  // Sorting a vector of pointers, so we need this special fix
  stable_sort(locus2.begin(),locus2.end(),less<Locus*>());
  
  // Sorting a normal vector
  stable_sort(ordered.begin(),ordered.end());
  
  c=0;
  for (int i=0; i<ordered.size(); i++)
    {
      // swap file order into locus position
      // and make all same chromosome
      ordered[i].bp = (int)ordered[i].freq;
      ordered[i].chr = 1;
      
	// keep track of genetic order, but only 
	// for nonmissing loci
	ordered[i].freq = c++;
    }
  
  // resort to get lookup table
  stable_sort(ordered.begin(),ordered.end());  

  // i.e. for file position k, the locus position is ordered[k]->freq

  // p2 p3 p1 p5 p4   : genetic position
  // 0  1  2  3  4    : file order

  // sort by cM
  // p1 p2 p3 p4 p5   : genetic 
  // 2  0  1  4  3    : file order
  // 0  1     2       : add genetic order: nonmissing...
  // 

  // sort by file order again
  // p2 p3 p1 p5 p4   : genetic
  // 0  1  2  3  4    : file
  // 1     0     2    : position to put in locus[l]
  

  // Add new locus2() to end of locus()
  for (int l=0; l<locus2.size(); l++)
    {
      // need to add a new MAP entry
      if (!exists.find(locus2[l]->name)->second )
	{
	  Locus * loc = new Locus;
	  loc = locus2[l];
	  locus.push_back(loc);
	}
    }
  

  
  ///////////////////////////////////////////////
  // .fam
  
  // Make new hash of Locus names
  
  mlocus.clear();
  for (int l=0;l<locus.size();l++)
    {
      mlocus.insert(make_pair(locus[l]->name,l));
    }
  if (mlocus.size() != locus.size() ) 
    {
      cerr << "Problem encountered merging files, with the following markers:\n";
       mlocus.clear();
       for (int l=0;l<locus.size();l++)
 	{
 	  if (mlocus.find(locus[l]->name) != mlocus.end())
 	    cerr << locus[l]->name << "\n";
 	  mlocus.insert(make_pair(locus[l]->name,l));
 	}
       cerr <<  "[ dump info: sizes = " << mlocus.size() << " and " << locus.size() << " ]\n";
       error("Cannot merge files. Check your MAP files.");
    } 
  
  // Make hash of existing individuals
  map<string,int> msample;
  for (int i=0;i<n; i++)
    msample.insert(make_pair(sample[i]->fid+"_"+sample[i]->iid,i));
  map<string,int>::iterator isample;


  // Resize all existing individuals
  // and set new elements to missing genotype (TF)
      
  if (par::SNP_major)
    {
      // Add space for new SNPs
      for (int i=0; i<locus2.size()-exist_cnt; i++)
	{
	  CSNP * newlocus = new CSNP;
	  newlocus->one.resize(n,true);
	  newlocus->two.resize(n,false);
	  SNP.push_back(newlocus);
	}      
      
    }
  else
    {
      // If using individual-major mode 
      for (int i=0; i<n; i++)
	{
	  sample[i]->one.resize(locus.size(),true);
	  sample[i]->two.resize(locus.size(),false);
	}
    }
  
  


  // An output file for diff mode
  ofstream MERD;
  if (par::merge_mode >=6)
    {
      string f = par::output_file_name+".diff";
      MERD.open(f.c_str(), ios::out);
      MERD << setw(20) << "SNP" << " " 
	   << setw(20) << "FID" << " " 
	   << setw(20) << "IID" << " " 
	   << setw(8) << "NEW" << " " 
	   << setw(8) << "OLD" << " " << "\n";
    }
  
  int new_person = 0;
  int old_person = 0;
  
  
  ///////////////////////////////////////
  // Read in FAM/BED file to new merge file
  

  // Initially, assume a binary trait
  par::qt = false;
  par::bt = true; 
  
  
  ifstream FAM;
  FAM.open(par::merge_famfile.c_str());
  FAM.clear();
  
  vector<bool> existing_person_list;
  int original_sample_size = sample.size();

  vector<Individual*> sample2;

  c=0;
  while(!FAM.eof())
    {

      Individual * person = new Individual;

      // No comments allowed in BED/BIM/FAM files

      // First 6 obligatory fields
      string phenotype;

      FAM >> person->fid 
	  >> person->iid 
	  >> person->pat
	  >> person->mat
	  >> person->sexcode
	  >> phenotype;
      

      // Skip last empty line that gets read
      if (person->fid=="") break;
      
      // Check for reserved family ID code
      if ( person->fid=="FID" )
	error("FID is a reserved ID... please select a different family ID");
      

      // Are we using 0/1 coding?
      if (par::coding01) 
	{
	  if ( phenotype == "1" ) 
	    phenotype = "2";      
	  else if ( phenotype == "0" )
	    phenotype = "1";
	  else 
	    phenotype = "0";
	}
            
      if (person->sexcode=="1")
	person->sex = true;  // male
      else if (person->sexcode=="2")
	person->sex = false; // female (default)
      else if (!par::ignore_missing_sex)
	{
	  person->missing = true;
	}

      
      // Have we already created this person?

      bool already_in = false;
      isample = msample.find(person->fid+"_"+person->iid);
      int indn = isample->second;
      if ( isample != msample.end() )
	{
	  already_in = true;
	  delete person;
	  person = sample[isample->second];
	  old_person++;
	}
      else
	new_person++;



      // Only look at phenotype if not already created

      if (!already_in)
	{
	  	
  	  //////////////////
	  // A non-founder?
	
	  person->founder = (person->pat == "0" && person->mat == "0") ? true : false;


	  /////////////////////////////////////////////////////
	  // Set missing status; test for quantitative traits?

	  if (phenotype == par::missing_phenotype)
	    person->missing = true;
	  else
	    {
	      if ( ! from_string<double>( person->phenotype, phenotype, std::dec ) )
		person->missing = true;
	      else
		if (phenotype != "0" && 
		    phenotype != "1" && 
		    phenotype != "2" ) 
		  {
		    par::qt = true;
		    par::bt = false; 
		  }
	    }
	  
	}
      

      /////////////////////////////////////// 
      // Add necessary space for a new person 
      // Missing genotypes by default

      if (!already_in)      
	{
	  if (par::SNP_major)
	    {
	      // Add a new missing person to each SNP
	      vector<CSNP*>::iterator s = SNP.begin();
	      while ( s != SNP.end() ) 
		{
		  (*s)->one.push_back(true);
		  (*s)->two.push_back(false);
		  s++;
		}	      
	      // And set the individual number
	      indn = n + new_person - 1;
	    }
	  else
	    {
	      // Add all new SNPs to this person
	      person->one.resize(locus.size(),true);
	      person->two.resize(locus.size(),false);
	    }

	}


      // Record whether this individual is new or not
      existing_person_list.push_back(already_in);	      
      sample2.push_back(person);
      
      // Add individual to list, if need be
      if (!existing_person_list[c])
	{
	  sample.push_back(person);
	  msample.insert(make_pair( person->fid+"_"+person->iid, 
				    sample.size()-1 ) );
	}
      
      // Increase person counter
      c++;
      
      
      
   }
  
  if (!par::merge_list)
    {
      printLOG(int2str( existing_person_list.size() ) 
	       + " individuals merged from [ " 
	       + par::merge_famfile + " ] \n");
      printLOG("Of these, " + int2str(new_person) 
	       + " were new, " + int2str( old_person ) +
	       " were already in current data\n\n");
    }




  ////////////////////////////////////
  // Read genotype information, merge

  ifstream BIT;
  bool bfile_SNP_major = openBinaryFile( par::merge_bedfile, BIT ); 
  
  if (bfile_SNP_major != par::SNP_major)
    error("BED files must both be SNP-major or both individual-major for merging\n");

  if ( (!par::SNP_major) || (!bfile_SNP_major) ) 
    error("Cannot --bmerge individual-major BED files -- convert to SNP-major");
  
  
   ///////////////////////////
   // SNP-major mode
  
   if (bfile_SNP_major)
     {
       
       // Person look-up table
       vector<Individual*>::iterator person = sample2.begin();
       vector<int> vindn;
       while ( person != sample2.end() )
	 {
	   map<string,int>::iterator isample = 
	     msample.find((*person)->fid+"_"+(*person)->iid);
	   int indn;
	   if ( isample != msample.end() ) 
	     indn = isample->second;
	   else
	     error("Internal error in --bmerge... should not happen...\n");	   
	   vindn.push_back(indn);
	   ++person;
	 }
       

      CSNP * snp;
      
      // Outer loop for SNPs
      int s=0;

      while (s<locus2.size()) // for all SNPs in second file
	{
	  
	  // Look up SNP information
	  
// 	  map<string,int>::iterator ilocus = mlocus.find(locus2[ s ]->name);
// 	  int l2 = ilocus->second;
	  
	  int k0 = (int)ordered[s].freq;
	  ilocus = mlocus.find(locus2[k0]->name);
	  int k = ilocus->second;
	  bool flipmode = flip_alleles.find( locus2[k0]->name ) != flip_alleles.end();
	  string snp1 = locus2[ k0 ]->allele1;
	  string snp2 = locus2[ k0 ]->allele2;
	  bool existence = exists.find(locus2[k0]->name)->second;
	  
	  
	  //////////////////////////////////////
	  // Inner loop for individuals
	  
	  vector<int>::iterator indn = vindn.begin();
	  
	  while ( indn != vindn.end() )
	    {
	      
	      char ch[1];
	      BIT.read(ch,1);
	      
	      bitset<8> b;
	      b = ch[0];	  

	      int c=0;
	      
	      if (!BIT) 
		error("Problem with the BED file...has the FAM file been changed?\n");
	      	      
	      while (c<7 && indn != vindn.end() ) 
		{
		  
		  bool s1 = b[c++];
		  bool s2 = b[c++];
		  
		  if ( flipmode && s1 == s2 )
		    {
		      s1 = !s1;
		      s2 = !s2;
		    }
		  
		  string one = snp1;
		  string two = snp2;
		  if (s1 && s2) one=snp2;
		  else if ( (!s1) && (!s2) ) two=snp1;
		  else if ( s1 && !s2 ) one=two=par::missing_genotype;
		  
		  bool already_in = false;
		  if ( *indn < original_sample_size ) already_in = true;
		  else already_in = existing_person_list[*indn - original_sample_size];

                  bool e = reconcileMerge( *indn, k , 
 					   one, two, 
	 				   already_in,
					   existence,
					   MERD, misstrand_dummy);	
		  
		  if (e) fatal_error=true;

		  // next person
		  indn++;		  
		  
		}
	      
	    }
	  
	  
	  // next SNP
	  s++;
	}
      
      // Set file mode
      par::SNP_major = true;
      
    }
   
   
   ////////////////////////////////////
   // Individual-major mode

//    else
//      {
       
//        // Outer loop for individuals
//        vector<Individual*>::iterator person = sample.begin();
//        while ( person != sample.end() )
// 	 {
	   
// 	   // Inner loop for SNPs
// 	   int s=0;
// 	   while (s<locus.size()) // for all SNPs
// 	     {
	       
// 	       char ch[1];
// 	       BIT.read(ch,1);
// 	       if (!BIT) error("Problem with the BED file... has the FAM file been changed?\n");
	       
// 	       bitset<8> b;
// 	       b = ch[0];	  
	       
// 	       int c=0;
	       
// 	       while (c<7 && s<locus.size())
// 		 {
// 		   (*person)->one[ s ] = b[c++];
// 		   (*person)->two[ s ] = b[c++];	      
// 		   s++;
// 		 }	 	  
// 	     }
	   
// 	   person++;
// 	 }
       
//        // Set file mode
//        par::SNP_major = false;
//      }
   
   
   
   
   
   //////////////
   // Close files
   
   FAM.clear();
   FAM.close();
   BIT.clear();
   BIT.close();
   
   
  
  // If a binary trait, now make 0 missing also
  // i.e. if we never saw other than missing, 0, 1 or 2
  
  if (par::bt)
    for (int i=0; i<sample.size(); i++)
      if ( sample[i]->phenotype == 0 )
	sample[i]->missing = true;


  
  if (par::merge_mode >=6) 
    {
      printLOG("Results from diff ( merge mode " 
	       + int2str(par::merge_mode) + " ) written to [ " +
	       par::output_file_name + ".diff ]\n");
      MERD.close();
      
      printLOG("Of " + int2str(diff_overlap) + " overlapping SNPs, " 
	       + int2str( diff_nonmissing_overlap ) + " were both genotyped\nand "
	       + int2str( diff_concordant_overlap ) + " were concordant\n");
      printLOG("Concordance rate is " 
	       + dbl2str( (double)diff_concordant_overlap 
			  / (double)diff_nonmissing_overlap ) + "\n");
      


      shutdown();
    }
  
  


  // Phenotype statistics
  if (!par::merge_list)
    {
      int nm=0;
      for (int i=0;i<sample.size();i++)
	if(!sample[i]->missing) nm++;
      printLOG(int2str( nm ) + " individuals with nonmissing phenotypes\n");
      
      if (par::bt) 
	{
	  printLOG("Assuming a disease phenotype (1=unaff, 2=aff, 0=miss)\n");
	  if (par::missing_phenotype!="0")
	    printLOG("Missing phenotype value is also " + par::missing_phenotype + "\n");
	  
	  int ncase = 0;
	  int ncontrol = 0;
	  for (int i=0; i<sample.size(); i++)
	    if ( sample[i]->phenotype == 1 )
	      ncontrol++;
	    else if ( sample[i]->phenotype == 2 )
	      ncase++;
	  printLOG(int2str(ncase)+" cases and "+int2str(ncontrol)+" controls\n");
	}
      else 
	{
	  printLOG("Assuming a quantitative trait\n");
	  printLOG("Missing phenotype value is " + par::missing_phenotype + "\n");
	}
      
    }
  
}