X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=chimera.h;h=24ab3f74e5b783becc8106beffeef09a22191cb8;hb=15cde0905641f8adddc1cc704f8c064f760e7461;hp=5df383ddcc56e62e853babb4f23e0978ce76d9c1;hpb=e729387d0813f82e9cd907dfeeef1afab399ba84;p=mothur.git diff --git a/chimera.h b/chimera.h index 5df383d..24ab3f7 100644 --- a/chimera.h +++ b/chimera.h @@ -14,23 +14,54 @@ #include "mothur.h" #include "sequence.hpp" - +/***********************************************************************/ struct Preference { string name; - vector leftParent; //keep the name of closest left associated with the two scores - vector rightParent; //keep the name of closest right associated with the two scores - vector score; //so you can keep last score and calc this score and keep whichever is bigger. - vector closestLeft; //keep the closest left associated with the two scores - vector closestRight; //keep the closest right associated with the two scores + string leftParent; //keep the name of closest left + string rightParent; //keep the name of closest + float score; //preference score + float closestLeft; //keep the closest left + float closestRight; //keep the closest right int midpoint; - + Preference() { name = ""; leftParent = ""; rightParent = ""; score = 0.0; closestLeft = 10000.0; closestRight = 10000.0; midpoint = 0; } + ~Preference() {} }; - +/***********************************************************************/ +struct score_struct { + int prev; + int score; + int row; + int col; +}; +/***********************************************************************/ +struct trace_struct { + int col; + int oldCol; + int row; +}; +/***********************************************************************/ +struct results { + int regionStart; + int regionEnd; + int nastRegionStart; + int nastRegionEnd; + string parent; + string parentAligned; + float queryToParent; + float queryToParentLocal; + float divR; +}; +/***********************************************************************/ struct SeqDist { Sequence* seq; float dist; + int index; }; - +//******************************************************************************************************************** +//sorts lowest to highest +inline bool compareRegionStart(results left, results right){ + return (left.nastRegionStart < right.nastRegionStart); +} //******************************************************************************************************************** //sorts lowest to highest inline bool compareSeqDist(SeqDist left, SeqDist right){ @@ -46,9 +77,9 @@ struct sim { }; struct linePair { - int start; - int end; - linePair(int i, int j) : start(i), end(j) {} + unsigned long int start; + unsigned long int end; + linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {} linePair(){} }; @@ -58,40 +89,32 @@ class Chimera { public: - Chimera(){}; - Chimera(string); - Chimera(string, string); - virtual ~Chimera(){}; - virtual void setFilter(bool f) { filter = f; } - virtual void setCorrection(bool c) { correction = c; } - virtual void setProcessors(int p) { processors = p; } - virtual void setWindow(int w) { window = w; } - virtual void setIncrement(int i) { increment = i; } - virtual void setNumWanted(int n) { numWanted = n; } - virtual void setKmerSize(int k) { kmerSize = k; } - virtual void setSVG(int s) { svg = s; } - virtual void setName(string n) { name = n; } - - virtual void setCons(string){}; - virtual void setQuantiles(string){}; + Chimera(){ m = MothurOut::getInstance(); length = 0; unaligned = false; } + virtual ~Chimera(){ for (int i = 0; i < templateSeqs.size(); i++) { delete templateSeqs[i]; } }; + virtual bool getUnaligned() { return unaligned; } + virtual int getLength() { return length; } virtual vector readSeqs(string); - virtual vector< vector > readQuantiles(); virtual void setMask(string); - virtual void runFilter(vector); - virtual void createFilter(vector); + virtual map runFilter(Sequence*); + virtual string createFilter(vector, float); + virtual void printHeader(ostream&){}; + virtual int getChimeras(Sequence*){ return 0; } + virtual int getChimeras(){ return 0; } + virtual int print(ostream&, ostream&){ return 0; } + #ifdef USE_MPI + virtual int print(MPI_File&, MPI_File&){ return 0; } + #endif - //pure functions - virtual void getChimeras() = 0; - virtual void print(ostream&) = 0; protected: - bool filter, correction, svg; - int processors, window, increment, numWanted, kmerSize; - string seqMask, quanfile, filterString, name; - - + vector templateSeqs; + bool filter, unaligned; + int length; + string seqMask, filterString, outputDir, templateFileName; + Sequence* getSequence(string); //find sequence from name + MothurOut* m; }; /***********************************************************************/