X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flowdata.h;h=cfe349c6e53a14180d521ae6401ed07381c0cd9f;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=612ed37757ba942a6f4221660028ca819fdeac51;hpb=902e0fcab76e75009ac43d3f4537e08182628d6f;p=mothur.git diff --git a/flowdata.h b/flowdata.h index 612ed37..cfe349c 100644 --- a/flowdata.h +++ b/flowdata.h @@ -18,12 +18,14 @@ class FlowData { public: FlowData(); - FlowData(int, float, float, int); + FlowData(int, float, float, int, string); ~FlowData(); bool getNext(ifstream&); string getName(); void capFlows(int); bool hasMinFlows(int); + bool hasGoodHomoP(); + Sequence getSequence(); void printFlows(ofstream&); @@ -38,6 +40,7 @@ private: string seqName, locationString, sequence, baseFlow; int numFlows, maxFlows, endFlow; vector flowData; + string getSequenceName(ifstream&); }; #endif