]> git.donarmstrong.com Git - mothur.git/blobdiff - sequence.cpp
modified mpi code to save ram by writing out every 10 seqs.
[mothur.git] / sequence.cpp
index 423b9058b23b0815326465f86b9916777c0359ce..4b5667584a07fd1ca5f6832efd16c192e04c5f1c 100644 (file)
  *
  */
 
-using namespace std;
-
 #include "sequence.hpp"
 
 /***********************************************************************/
 
 Sequence::Sequence(){
+       m = MothurOut::getInstance();
        initialize();
 }
 
 /***********************************************************************/
 
 Sequence::Sequence(string newName, string sequence) {
-
-       initialize();   
-       name = newName;
-       if(sequence.find_first_of('-') != string::npos) {
+       try {
+               m = MothurOut::getInstance();
+               initialize();   
+               name = newName;
+               
+               //setUnaligned removes any gap characters for us
+               setUnaligned(sequence);
                setAligned(sequence);
-               isAligned = 1;
        }
-       setUnaligned(sequence);
-       
+       catch(exception& e) {
+               m->errorOut(e, "Sequence", "Sequence");
+               exit(1);
+       }                       
 }
 //********************************************************************************************************************
-
-Sequence::Sequence(ifstream& fastaFile){
+//this function will jump over commented out sequences, but if the last sequence in a file is commented out it makes a blank seq
+Sequence::Sequence(istringstream& fastaString){
+       try {
+               m = MothurOut::getInstance();
+       
+               initialize();
+               fastaString >> name;
+               name = name.substr(1);
+               string sequence;
        
-       string accession;                               //      provided a file handle to a fasta-formatted sequence file, read in the next
-       fastaFile >> accession;                 //      accession number and sequence we find...
-       setName(accession);
+               //read comments
+               while ((name[0] == '#') && fastaString) { 
+                       while (!fastaString.eof())      {       char c = fastaString.get(); if (c == 10 || c == 13){    break;  }       } // get rest of line if there's any crap there
+                       sequence = getCommentString(fastaString);
+                       
+                       if (fastaString) {  
+                               fastaString >> name;  
+                               name = name.substr(1);  
+                       }else { 
+                               name = "";
+                               break;
+                       }
+               }
+               
+               while (!fastaString.eof())      {       char c = fastaString.get();  if (c == 10 || c == 13){   break;  }       } // get rest of line if there's any crap there
+               
+               sequence = getSequenceString(fastaString);              
+               setAligned(sequence);   
+               //setUnaligned removes any gap characters for us                                                
+               setUnaligned(sequence);         
+       }
+       catch(exception& e) {
+               m->errorOut(e, "Sequence", "Sequence");
+               exit(1);
+       }                                                               
+}
 
-       char letter;
-       string sequence;
+//********************************************************************************************************************
+//this function will jump over commented out sequences, but if the last sequence in a file is commented out it makes a blank seq
+Sequence::Sequence(ifstream& fastaFile){
+       try {
+               m = MothurOut::getInstance();
+               initialize();
+               fastaFile >> name;
+               name = name.substr(1);
+               string sequence;
+               
+               //read comments
+               while ((name[0] == '#') && fastaFile) { 
+                       while (!fastaFile.eof())        {       char c = fastaFile.get(); if (c == 10 || c == 13){      break;  }       } // get rest of line if there's any crap there
+                       sequence = getCommentString(fastaFile);
+                       
+                       if (fastaFile) {  
+                               fastaFile >> name;  
+                               name = name.substr(1);  
+                       }else { 
+                               name = "";
+                               break;
+                       }
+               }
+               
+               //read real sequence
+               while (!fastaFile.eof())        {       char c = fastaFile.get(); if (c == 10 || c == 13){      break;  }       } // get rest of line if there's any crap there
+               
+               sequence = getSequenceString(fastaFile);                
+               
+               setAligned(sequence);   
+               //setUnaligned removes any gap characters for us                                                
+               setUnaligned(sequence); 
+       }
+       catch(exception& e) {
+               m->errorOut(e, "Sequence", "Sequence");
+               exit(1);
+       }                                                       
+}
+//********************************************************************************************************************
+string Sequence::getSequenceString(ifstream& fastaFile) {
+       try {
+               char letter;
+               string sequence = "";   
+               
+               while(fastaFile){
+                       letter= fastaFile.get();
+                       if(letter == '>'){
+                               fastaFile.putback(letter);
+                               break;
+                       }
+                       else if(isprint(letter)){
+                               letter = toupper(letter);
+                               if(letter == 'U'){letter = 'T';}
+                               sequence += letter;
+                       }
+               }
+               
+               return sequence;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "Sequence", "getSequenceString");
+               exit(1);
+       }
+}
+//********************************************************************************************************************
+//comment can contain '>' so we need to account for that
+string Sequence::getCommentString(ifstream& fastaFile) {
+       try {
+               char letter;
+               string sequence = "";
+               
+               while(fastaFile){
+                       letter=fastaFile.get();
+                       if((letter == '\r') || (letter == '\n')){  
+                               gobble(fastaFile);  //in case its a \r\n situation
+                               break;
+                       }
+               }
+               
+               return sequence;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "Sequence", "getCommentString");
+               exit(1);
+       }
+}
+//********************************************************************************************************************
+string Sequence::getSequenceString(istringstream& fastaFile) {
+       try {
+               char letter;
+               string sequence = "";   
+               
+               while(!fastaFile.eof()){
+                       letter= fastaFile.get();
        
-       while(fastaFile){
-               letter= fastaFile.get();
-               if(letter == '>'){
-                       fastaFile.putback(letter);
-                       break;
+                       if(letter == '>'){
+                               fastaFile.putback(letter);
+                               break;
+                       }
+                       else if(isprint(letter)){
+                               letter = toupper(letter);
+                               if(letter == 'U'){letter = 'T';}
+                               sequence += letter;
+                       }
                }
-               else if(isprint(letter)){
-                       letter = toupper(letter);
-                       if(letter == 'U'){letter = 'T';}
-                       sequence += letter;
+               
+               return sequence;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "Sequence", "getSequenceString");
+               exit(1);
+       }
+}
+//********************************************************************************************************************
+//comment can contain '>' so we need to account for that
+string Sequence::getCommentString(istringstream& fastaFile) {
+       try {
+               char letter;
+               string sequence = "";
+               
+               while(fastaFile){
+                       letter=fastaFile.get();
+                       if((letter == '\r') || (letter == '\n')){  
+                               gobble(fastaFile);  //in case its a \r\n situation
+                               break;
+                       }
                }
                
+               return sequence;
        }
-
-       if(sequence.find_first_of('-') != string::npos){        //      if there are any gaps in the sequence, assume that it is
-               setAligned(sequence);                                                   //      an alignment file
+       catch(exception& e) {
+               m->errorOut(e, "Sequence", "getCommentString");
+               exit(1);
        }
-       setUnaligned(sequence);                                                         //      also set the unaligned sequence file
 }
-
 //********************************************************************************************************************
 
 void Sequence::initialize(){
@@ -75,8 +220,8 @@ void Sequence::initialize(){
        isAligned = 0;
        startPos = -1;
        endPos = -1;
-       longHomoPolymer = 0;
-       ambigBases = 0;
+       longHomoPolymer = -1;
+       ambigBases = -1;
        
 }      
 
@@ -91,7 +236,7 @@ void Sequence::setName(string seqName) {
 
 void Sequence::setUnaligned(string sequence){
        
-       if(sequence.find_first_of('-') != string::npos) {
+       if(sequence.find_first_of('.') != string::npos || sequence.find_first_of('-') != string::npos) {
                string temp = "";
                for(int j=0;j<sequence.length();j++) {
                        if(isalpha(sequence[j]))        {       temp += sequence[j];    }
@@ -112,6 +257,7 @@ void Sequence::setAligned(string sequence){
        //if the alignment starts or ends with a gap, replace it with a period to indicate missing data
        aligned = sequence;
        alignmentLength = aligned.length();
+       setUnaligned(sequence); 
 
        if(aligned[0] == '-'){
                for(int i=0;i<alignmentLength;i++){
@@ -131,7 +277,7 @@ void Sequence::setAligned(string sequence){
                        }
                }
        }
-       
+       isAligned = 1;  
 }
 
 //********************************************************************************************************************
@@ -212,7 +358,7 @@ int Sequence::getAlignLength(){
 
 int Sequence::getAmbigBases(){
        if(ambigBases == -1){
-       
+               ambigBases = 0;
                for(int j=0;j<numBases;j++){
                        if(unaligned[j] != 'A' && unaligned[j] != 'T' && unaligned[j] != 'G' && unaligned[j] != 'C'){
                                ambigBases++;
@@ -226,8 +372,8 @@ int Sequence::getAmbigBases(){
 //********************************************************************************************************************
 
 int Sequence::getLongHomoPolymer(){
-       if(longHomoPolymer == 0){
-
+       if(longHomoPolymer == -1){
+               longHomoPolymer = 1;
                int homoPolymer = 1;
                for(int j=1;j<numBases;j++){
                        if(unaligned[j] == unaligned[j-1]){
@@ -249,11 +395,13 @@ int Sequence::getStartPos(){
        if(endPos == -1){
                for(int j = 0; j < alignmentLength; j++) {
                        if(aligned[j] != '.'){
-                               startPos = j;
+                               startPos = j + 1;
                                break;
                        }
                }
-       }       
+       }
+       if(isAligned == 0){     startPos = 1;   }
+
        return startPos;
 }
 
@@ -263,11 +411,13 @@ int Sequence::getEndPos(){
        if(endPos == -1){
                for(int j=alignmentLength-1;j>=0;j--){
                        if(aligned[j] != '.'){
-                               endPos = j;
+                               endPos = j + 1;
                                break;
                        }
                }
        }
+       if(isAligned == 0){     endPos = numBases;      }
+       
        return endPos;
 }
 
@@ -278,3 +428,20 @@ bool Sequence::getIsAligned(){
 }
 
 //********************************************************************************************************************
+
+void Sequence::reverseComplement(){
+
+       string temp;
+       for(int i=numBases-1;i>=0;i--){
+               if(unaligned[i] == 'A')         {       temp += 'T';    }
+               else if(unaligned[i] == 'T'){   temp += 'A';    }
+               else if(unaligned[i] == 'G'){   temp += 'C';    }
+               else if(unaligned[i] == 'C'){   temp += 'G';    }
+               else                                            {       temp += 'N';    }
+       }
+       unaligned = temp;
+       aligned = temp;
+       
+}
+
+//********************************************************************************************************************