-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsamples.cpp
65 lines (56 loc) · 1.93 KB
/
samples.cpp
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
// ******************************************************
// vcfCTools (c) 2011 Alistair Ward
// Marth Lab, Department of Biology, Boston College
// All rights reserved.
// ------------------------------------------------------
// Last modified: 18 February 2011
// ------------------------------------------------------
// Class for handling lists of samples.
// ******************************************************
#include "samples.h"
using namespace std;
using namespace vcfCTools;
// Constructor
samples::samples(void) {
noSamples = 0;
};
// Desctructo.
samples::~samples(void) {};
// Open the samples list file.
bool samples::openSamplesFile(string& filename) {
samplesFilename = filename;
file.open(samplesFilename.c_str(), ifstream::in);
input = &file;
if (!file.is_open()) {
cerr << "Failed to open file: " << samplesFilename << endl;
exit(1);
}
}
//
void samples::getSamples(vcf& v) {
string sampleName;
// Get the samples from the input file.
while (getline(*input, sampleName)) {
samplesMap[sampleName] = -1;
noSamples++;
}
// Loop over all of the samples in the vcf file and if the sample
// appears in the map, set the value equal to the position of this
// sample in the list of genotype strings.
unsigned int count = 0;
for (vector<string>::iterator iter = v.samples.begin(); iter != v.samples.end(); iter++) {
if (samplesMap.count(*iter) > 0) {samplesMap[*iter] = count;}
count++;
}
// Now loop over all of the provided samples and check if there are
// any that are not present in the vcf file. If the map value is
// -1 this indicates that it was not seen in the list of samples
// from the vcf file.
for (map<string, int>::iterator iter = samplesMap.begin(); iter != samplesMap.end(); iter++) {
if (iter->second == -1) {
cerr << "WARNING: Sample " << iter->first << " is not present in the vcf file." << endl;
samplesMap.erase(iter);
noSamples--;
}
}
}