]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
changed how we do "smart" distancing
[mothur.git] / inputdata.h
index e9deb9d202c1935c222e4f392f85f3f2781d81ca..6d2d004911b663c63c1b5b582411bb38b70e3c00 100644 (file)
@@ -15,12 +15,19 @@ public:
        InputData(string, string, string);
        ~InputData();
        ListVector* getListVector();
+       ListVector* getListVector(string);  //pass the label you want
        SharedListVector* getSharedListVector();
-       OrderVector* getOrderVector();
+       SharedListVector* getSharedListVector(string);  //pass the label you want
+       OrderVector* getOrderVector(); 
+       OrderVector* getOrderVector(string); //pass the label you want
        SharedOrderVector* getSharedOrderVector();
+       SharedOrderVector* getSharedOrderVector(string);  //pass the label you want
        SAbundVector* getSAbundVector();
+       SAbundVector* getSAbundVector(string);  //pass the label you want
        RAbundVector* getRAbundVector();
+       RAbundVector* getRAbundVector(string);  //pass the label you want
        vector<SharedRAbundVector*> getSharedRAbundVectors();
+       vector<SharedRAbundVector*> getSharedRAbundVectors(string);  //pass the label you want
        
 private:
        string format;
@@ -33,6 +40,7 @@ private:
        SAbundVector* sabund;
        RAbundVector* rabund;
        map<string,int> orderMap;
+       string filename;
 };