]> git.donarmstrong.com Git - mothur.git/blobdiff - sequence.hpp
fixed bug with aligner and longest base. added deunique.seqs command.
[mothur.git] / sequence.hpp
index 21b4c3874c9ccb1f5ab9eab31fe78fbd7f0a40c6..c634f78b6522e43742800b0a4541d910eb7d6be3 100644 (file)
@@ -26,6 +26,11 @@ public:
        Sequence(ifstream&);
        Sequence(istringstream&);
        
+       //these constructors just set the unaligned string to save space
+       Sequence(string, string, string);  
+       Sequence(ifstream&, string);
+       Sequence(istringstream&, string);
+       
        void setName(string);
        void setUnaligned(string);
        void setPairwise(string);
@@ -43,13 +48,11 @@ public:
        int getEndPos();
        int getAlignLength();
        int getAmbigBases();
+       void removeAmbigBases();
        int getLongHomoPolymer();
        bool getIsAligned();
        void printSequence(ostream&);
        
-       int MPISend(int); //not working at the moment...
-       int MPIRecv(int); //not working at the moment...
-       
 private:
        MothurOut* m;
        void initialize();