]> git.donarmstrong.com Git - mothur.git/blob - chimera.cpp
a few modifications for 1.9
[mothur.git] / chimera.cpp
1 /*
2  *  chimera.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 8/11/09.
6  *  Copyright 2009 Schloss Lab Umass Amherst. All rights reserved.
7  *
8  */
9
10 #include "chimera.h"
11
12 //***************************************************************************************************************
13 //this is a vertical soft filter
14 string Chimera::createFilter(vector<Sequence*> seqs, float t) {
15         try {
16                 filterString = "";
17                 int threshold = int (t * seqs.size());
18 //cout << "threshhold = " << threshold << endl;
19                 
20                 vector<int> gaps;       gaps.resize(seqs[0]->getAligned().length(), 0);
21                 vector<int> a;          a.resize(seqs[0]->getAligned().length(), 0);
22                 vector<int> t;          t.resize(seqs[0]->getAligned().length(), 0);
23                 vector<int> g;          g.resize(seqs[0]->getAligned().length(), 0);
24                 vector<int> c;          c.resize(seqs[0]->getAligned().length(), 0);
25         
26                 filterString = (string(seqs[0]->getAligned().length(), '1'));
27                 
28                 //for each sequence
29                 for (int i = 0; i < seqs.size(); i++) {
30                 
31                         if (m->control_pressed) { return filterString; }
32                 
33                         string seqAligned = seqs[i]->getAligned();
34                 
35                         for (int j = 0; j < seqAligned.length(); j++) {
36                                 //if this spot is a gap
37                                 if ((seqAligned[j] == '-') || (seqAligned[j] == '.'))   {       gaps[j]++;      }
38                                 else if (toupper(seqAligned[j]) == 'A')                                 {       a[j]++;         }
39                                 else if (toupper(seqAligned[j]) == 'T')                                 {       t[j]++;         }
40                                 else if (toupper(seqAligned[j]) == 'G')                                 {       g[j]++;         }
41                                 else if (toupper(seqAligned[j]) == 'C')                                 {       c[j]++;         }
42                         }
43                 }
44                 
45                 //zero out spot where all sequences have blanks
46                 int numColRemoved = 0;
47                 for(int i = 0;i < seqs[0]->getAligned().length(); i++){
48                 
49                         if (m->control_pressed) { return filterString; }
50                         
51                         if(gaps[i] == seqs.size())      {       filterString[i] = '0';  numColRemoved++;  }
52                         
53                         else if (((a[i] < threshold) && (t[i] < threshold) && (g[i] < threshold) && (c[i] < threshold))) {      filterString[i] = '0';  numColRemoved++;  }
54                         //cout << "a = " << a[i] <<  " t = " << t[i] <<  " g = " << g[i] <<  " c = " << c[i] << endl;
55                 }
56
57                 if (threshold != 0.0) {  m->mothurOut("Filter removed " + toString(numColRemoved) + " columns.");  m->mothurOutEndLine();  }
58                 
59                 return filterString;
60         }
61         catch(exception& e) {
62                 m->errorOut(e, "Chimera", "createFilter");
63                 exit(1);
64         }
65 }
66 //***************************************************************************************************************
67 map<int, int> Chimera::runFilter(Sequence* seq) {
68         try {
69                 map<int, int> maskMap;
70                 string seqAligned = seq->getAligned();
71                 string newAligned = "";
72                 int count = 0;
73                         
74                 for (int j = 0; j < seqAligned.length(); j++) {
75                         //if this spot is a gap
76                         if (filterString[j] == '1') { 
77                                 newAligned += seqAligned[j]; 
78                                 maskMap[count] = j;
79                                 count++;
80                         }
81                 }
82                         
83                 seq->setAligned(newAligned);
84                 
85                 return maskMap;
86         }
87         catch(exception& e) {
88                 m->errorOut(e, "Chimera", "runFilter");
89                 exit(1);
90         }
91 }
92 //***************************************************************************************************************
93 vector<Sequence*> Chimera::readSeqs(string file) {
94         try {
95         
96                 vector<Sequence*> container;
97                 int count = 0;
98                 length = 0;
99                 unaligned = false;
100
101                 m->mothurOut("Reading sequences from " + file + "..."); cout.flush();
102                 
103                 #ifdef USE_MPI  
104                         int pid;
105                         vector<long> positions;
106                         int numSeqs;
107                 
108                         MPI_Status status; 
109                         MPI_File inMPI;
110                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
111
112                         //char* inFileName = new char[file.length()];
113                         //memcpy(inFileName, file.c_str(), file.length());
114                         
115                         char inFileName[1024];
116                         strcpy(inFileName, file.c_str());
117         
118                         MPI_File_open(MPI_COMM_WORLD, inFileName, MPI_MODE_RDONLY, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
119                         //delete inFileName;
120
121                         if (pid == 0) {
122                                 positions = setFilePosFasta(file, numSeqs); //fills MPIPos, returns numSeqs
123
124                                 //send file positions to all processes
125                                 MPI_Bcast(&numSeqs, 1, MPI_INT, 0, MPI_COMM_WORLD);  //send numSeqs
126                                 MPI_Bcast(&positions[0], (numSeqs+1), MPI_LONG, 0, MPI_COMM_WORLD); //send file pos     
127                         }else{
128                                 MPI_Bcast(&numSeqs, 1, MPI_INT, 0, MPI_COMM_WORLD); //get numSeqs
129                                 positions.resize(numSeqs+1);
130                                 MPI_Bcast(&positions[0], (numSeqs+1), MPI_LONG, 0, MPI_COMM_WORLD); //get file positions
131                         }
132                         
133                         //read file 
134                         for(int i=0;i<numSeqs;i++){
135                         
136                                 if (m->control_pressed) { MPI_File_close(&inMPI); return container; }
137         
138                                 //read next sequence
139                                 int seqlength = positions[i+1] - positions[i];
140                                 char* buf4 = new char[seqlength];
141
142                                 MPI_File_read_at(inMPI, positions[i], buf4, seqlength, MPI_CHAR, &status);
143                                 
144                                 string tempBuf = buf4;
145                                 if (tempBuf.length() > seqlength) { tempBuf = tempBuf.substr(0, seqlength); }
146                                 delete buf4;
147
148                                 istringstream iss (tempBuf,istringstream::in);
149                 
150                                 Sequence* current = new Sequence(iss);   
151                                 if (current->getName() != "") {
152                                         if (count == 0) {  length = current->getAligned().length();  count++;  } //gets first seqs length
153                                         else if (length != current->getAligned().length()) {    unaligned = true;       }
154                         
155                                         container.push_back(current);  
156                                 }
157                         }
158                         
159                         MPI_File_close(&inMPI);
160         #else
161
162                 ifstream in;
163                 openInputFile(file, in);
164                 
165                 //read in seqs and store in vector
166                 while(!in.eof()){
167                         
168                         if (m->control_pressed) { return container; }
169                         
170                         Sequence* current = new Sequence(in);  gobble(in);
171                         
172                         if (count == 0) {  length = current->getAligned().length();  count++;  } //gets first seqs length
173                         else if (length != current->getAligned().length()) {    unaligned = true;       }
174                                                 
175                         if (current->getName() != "") {  container.push_back(current);  }
176                 }
177                 in.close();
178         #endif
179         
180                 m->mothurOut("Done."); m->mothurOutEndLine();
181                 
182                 return container;
183         }
184         catch(exception& e) {
185                 m->errorOut(e, "Chimera", "readSeqs");
186                 exit(1);
187         }
188 }
189 //***************************************************************************************************************
190 void Chimera::setMask(string filename) {
191         try {
192                 
193                 if (filename == "default") {
194                         //default is from wigeon  236627 EU009184.1 Shigella dysenteriae str. FBD013
195                         seqMask = ".....................................................................................................AAATTGAAGAGTTT-GA--T-CA-T-G-GCTC-AG-AT-TGAA-C-GC--TGG-C--G-GC-A-GG--C----C-T--AACACA-T-GC-A-AGT-CGA-A-CG----------G-TAA-CA-G----------------------------GAAG-A-AG----------------------------------------------------CTT-G----------------------------------------------------------------------------------CT-TCTTT----------------G-CT--G--AC--G--AG-T-GG-C-GG-A--C-------------GGG-TGAGT-A--AT-GT-C-T-G-GG---A-A--A-CT-G--C-C-TGA--TG-G------------------------------------------------------------------A-GG----GGG-AT-AA-CTA-------------------------C-T-G-----------------------GAA-A---CGG-TAG-CTAA-TA---CC-G--C-AT-A----------A--------------------C-------------------------------------GT-C-----------------------------------------------------------------------------------------------------------------------G-CA-A--------------------------------------------------------------------------------------------------------------------------------------G-A-C---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------CAAA--G-A-G-GG-----G--GA-C-CT--------------------------------------------------------------------------------------------------------------------TCG-G----------------------------------------------------------------------------------------------------------------------G----CC-TC--T---T-G--------------C----C-A---T-CG-G---AT---G-T-----G-CCC-AGA--T-GGG--A------TT--A--G-CT-A----G---TAGG-T-G-GG-G-T----AAC-GG-C-T-C-ACCT--A-GG-C-G--A-CG-A------------TCC-C-T------AG-CT-G-G-TCT-G-AG----A--GG-AT--G-AC-C-AG-CCAC-A-CTGGA--A-C-TG-A-GA-C-AC-G-G-TCCAGA-CTCC-TAC-G--G-G-A-G-GC-A-GC-A-G-TG---GG-G-A-ATA-TTGCA-C-AA-T-GG--GC-GC-A----A-G-CC-T-GA-TG-CA-GCCA-TGCC-G-CG-T---G-T-A--T--GA-A-G--A--A-G-G-CC-----TT-CG---------G-G-T-T-G-T--A---AA-G-TAC--------TT-TC-A-G--C-GGG----GA-G--G---AA-GGGA---GTAA-AG----T--T--AA-T---A----C-----CT-T-TGC-TCA-TT-GA-CG-TT-A-C-CC-G-CA-G---------AA-----------GAAGC-ACC-GG-C-TAA---C--T-CCGT--GCCA--G-C---A--GCCG---C-GG--TA-AT--AC---GG-AG-GGT-GCA-A-G-CG-TTAA-T-CGG-AA-TT-A--C-T--GGGC-GTA----AA-GCGC-AC--G-CA-G-G-C-G------------G--T-TT-G-T-T-AA----G-T-C-A---G-ATG-TG-A-AA-TC--CC-CGG-G--------------------------------------------------------------------CT-C-AA-------------------------------------------------------------------------CC-T-G-GG-AA-C----T-G-C-A-T-C--------T--GA-T-A-C-T-G-GCA--A-G-C---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------T-T-G-A-G-T-C-----T-CG--TA-G-A------------G-GG-G-GG-T----AG--AATT-CCA-G-GT--GT-A-GCG-GTGAAA-TG-CGT-AGAG-A-TC-T-GGA--GG-A-AT-A-CC-GG--T--G--GC-GAA-G--G-C---G----G--C-C-CCCTG------G-AC-GA--------------------------------------------------------------AG-A-C-T--GA--CG-----CT-CA-GG--T-G-CGA--AA-G-C--------------G-TGGG-GAG-C-A-AACA--GG-ATTA-G-ATA-C-----CC-T-G-GTA-G-T----C-CA--C-G-CCG-T-AAA--C-GATG-TC--GA-CT---------T-GG--A--G-G-TT-G-TG-C--C--------------------------------------------------------------------------------------CTT-GA--------------------------------------------------------------------------------------------------------------------------------------------------G-G-C-GT--G-G-C-T-TC-C------GG--A----GC-TAA--CG-C-G-T--T--AA-GT--C----G-ACC-GCC-T-G-GG-GAG-TA---CGG-----C-C--G-C-A-A-GGT-T--AAA-ACTC-AAA---------TGAA-TTG-ACGGG-G-G-CCCG----C-A--C-A-A-GCG-GT-G--G--AG-CA-T--GT-GGT-TT-AATT-C-G-ATG-CAAC-G-CG-A-AG-A-A-CC-TT-A-CC-TGGTC-TT-G-AC-A-T-C--------------CAC-G-G-------------A-AG-T-T-T--TC--A-GA-G-A-T--G-A-G--A-A-T-G--T-G-----CC-------------------------------------T--TC-G------------------------------------------GG----A----A---CC-GTG---A--GA---------------------------------------------------C-A-G-G-T-GCTG-CA-TGG-CT--GTC-GTC-A-GC-TC---G-TG-TT-G--TGA-AA-TGT-T-GG-G-TT-AA-GT-CCCGC-AA--------C-GAG-CGC-A-ACC-C-T-TA--TC--C-TTTG--T-T-G-C-C---AG-C-G-----G-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------TCC------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------GG---C----C-G------------G----G---A-A--CT---------------C-A-A-A-G-GA-G--AC-T-G-CCA--G-T------------------------------------G-A---TAA----------------------------------A-C-T-G--G-A-GG-A--AGG-T--GGGG-A-TGAC-GTC--AAGT-C---ATC-A-T-G-G-C-C-CTT----AC-G--AC-C-A-GG-GC-TA-CAC-ACGTG-C--TA--CAATG---G-CGCA-T-A--C-AAA-GA-GA--------------------------------------------------------------------------------------------------A-G-C-G-A--C-CTCG-C--G---------------------------------------A-GA-G-C-----------A--A-G-CG---G----------A--CCT-C------A-T-AAAGT-GC-G-T-C-G-TAG-TCC--------GGA-T-TGGAG-TC--T-GCAA-CT-C-------------------------------------------------------------------------------------------------G-ACTCC-A-T-G-AA-G-TC-GGAAT-CG-C-TA--G-TA-AT-C-G-T----GGA-TC-A-G--A------AT--GCC-AC-G-GT-G-AAT-ACGT-T-CCCGGGCCT-TGTA----CACACCG-CCC-GTC-----A---CA--CCA-TG-GG-A--G---TGG-G-TT-GC-AAA--A-GAA------G--T-AGG-TA-G-C-T-T-AA-C-C--------------------------------------------------------------TT----C-------------------------------------------------------------------------------------------------G--GG-A--GG-G--C---GC-TTA--CC--ACT-T----T-GTG-AT-TCA------------------------TG--ACT-GGGG-TG-AAG-TCGTAACAA-GGTAA-CCGT-AGGGGAA-CCTG-CGGT-TGGATCACCTCCTTA................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................";
196                 }else if (filename == "") {  //do nothing 
197                         seqMask = "";
198                 }else{
199                 
200         #ifdef USE_MPI  
201                         MPI_File inMPI;
202                         MPI_Offset size;
203                         MPI_Status status;
204                         
205                         //char* inFileName = new char[filename.length()];
206                         //memcpy(inFileName, filename.c_str(), filename.length());
207                         
208                         char inFileName[1024];
209                         strcpy(inFileName, filename.c_str());
210         
211                         MPI_File_open(MPI_COMM_WORLD, inFileName, MPI_MODE_RDONLY, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
212                         MPI_File_get_size(inMPI, &size);
213
214                         //delete inFileName;
215                         
216                         char* buffer = new char[size];
217                         MPI_File_read(inMPI, buffer, size, MPI_CHAR, &status);
218                         
219                         string tempBuf = buffer;
220                         if (tempBuf.length() > size) { tempBuf = tempBuf.substr(0, size);  }
221                         istringstream iss (tempBuf,istringstream::in);
222
223                         delete buffer;
224                         
225                         if (!iss.eof()) {
226                                 Sequence temp(iss);
227                                 seqMask = temp.getAligned();
228                         }else {
229                                 m->mothurOut("Problem with mask."); m->mothurOutEndLine(); 
230                                 seqMask = "";
231                         }
232                         
233                         MPI_File_close(&inMPI);
234         #else
235         
236                         ifstream infile;
237                         openInputFile(filename, infile);
238                         
239                         if (!infile.eof()) {
240                                 Sequence temp(infile);
241                                 seqMask = temp.getAligned();
242                         }else {
243                                 m->mothurOut("Problem with mask."); m->mothurOutEndLine(); 
244                                 seqMask = "";
245                         }
246                         infile.close();
247         #endif
248         
249                 }
250         }
251         catch(exception& e) {
252                 m->errorOut(e, "Chimera", "setMask");
253                 exit(1);
254         }
255 }
256 //***************************************************************************************************************
257 Sequence* Chimera::getSequence(string name) {
258         try{
259                 Sequence* temp;
260                 
261                 //look through templateSeqs til you find it
262                 int spot = -1;
263                 for (int i = 0; i < templateSeqs.size(); i++) {
264                         if (name == templateSeqs[i]->getName()) {  
265                                 spot = i;
266                                 break;
267                         }
268                 }
269                 
270                 if(spot == -1) { m->mothurOut("Error: Could not find sequence."); m->mothurOutEndLine(); return NULL; }
271                 
272                 temp = new Sequence(templateSeqs[spot]->getName(), templateSeqs[spot]->getAligned());
273                 
274                 return temp;
275         }
276         catch(exception& e) {
277                 m->errorOut(e, "Chimera", "getSequence");
278                 exit(1);
279         }
280 }
281 //***************************************************************************************************************
282
283
284
285