]> git.donarmstrong.com Git - mothur.git/blobdiff - flowdata.h
changes while testing
[mothur.git] / flowdata.h
index 09426f957f9a4ddee425fedd117d03786c9869ad..cfe349c6e53a14180d521ae6401ed07381c0cd9f 100644 (file)
@@ -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<float> flowData;
+    string getSequenceName(ifstream&);
 };
 
 #endif