]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedcommand.h
some changes while testing 1.9
[mothur.git] / sharedcommand.h
index 3467c7b1d9e6beb1bcd2b5af9a63f9d9bbaf8045..399f3d3966bf828ec32cd790dd0d7d14c7e08c25 100644 (file)
@@ -26,21 +26,26 @@ class GlobalData;
 class SharedCommand : public Command {
        
 public:
-       SharedCommand();        
+       SharedCommand(string);  
        ~SharedCommand();
        int execute();  
        void help() {}
        
 private:
        void printSharedData(vector<SharedRAbundVector*>);
+       int createMisMatchFile();
+       bool isValidGroup(string, vector<string>);
+       int eliminateZeroOTUS(vector<SharedRAbundVector*>&);
+       
        GlobalData* globaldata;
        ReadOTUFile* read;
        SharedListVector* SharedList;
        InputData* input;
        GroupMap* groupMap;
+       vector<string> groups, outputNames;
        ofstream out;
-       string filename, fileroot;
-       bool firsttime;
+       string filename, fileroot, outputDir;
+       bool firsttime, pickedGroups;
        map<string, ofstream*> filehandles;
        map<string, ofstream*>::iterator it3;