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