]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedcommand.h
added ordergroup parameter to read.otu
[mothur.git] / sharedcommand.h
index 08314b56590b70dcb56b29f0c08a454da9ebac5d..0f3e7ef2289b39f9ab4807ccda5cbe179ff51d04 100644 (file)
@@ -12,7 +12,6 @@
 #include "command.hpp"
 #include "sharedlistvector.h"
 #include "inputdata.h"
-#include "shared.h"
 #include "readotu.h"
 
 /* The shared() command:
@@ -27,21 +26,29 @@ class GlobalData;
 class SharedCommand : public Command {
        
 public:
-       SharedCommand();        
+       SharedCommand(string);  
        ~SharedCommand();
        int execute();  
        void help() {}
        
 private:
-       void printSharedData();
+       void printSharedData(vector<SharedRAbundVector*>);
+       int createMisMatchFile();
+       int readOrderFile();
+       bool isValidGroup(string, vector<string>);
+       int eliminateZeroOTUS(vector<SharedRAbundVector*>&);
+       
        GlobalData* globaldata;
        ReadOTUFile* read;
        SharedListVector* SharedList;
        InputData* input;
-       Shared* shared;
-       map<string, SharedRAbundVector*>::iterator it;
+       GroupMap* groupMap;
+       vector<string> groups, outputNames, order;
        ofstream out;
-       string filename;
+       string filename, fileroot, outputDir;
+       bool firsttime, pickedGroups;
+       map<string, ofstream*> filehandles;
+       map<string, ofstream*>::iterator it3;
 
 };