]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedcommand.h
added multiple processors option for Windows users to align.seqs, dist.seqs, summary...
[mothur.git] / sharedcommand.h
index ca0ddd833636e6550cb48832517cdc96f912977e..861632ce7d6a8026c14b463387b9d8dbb320522d 100644 (file)
@@ -12,7 +12,6 @@
 #include "command.hpp"
 #include "sharedlistvector.h"
 #include "inputdata.h"
-#include "readotu.h"
 
 /* The shared() command:
        The shared command can only be executed after a successful read.shared command.  
        There are no shared command parameters.  The shared command should be in the following format: shared(). */
 
 
-class GlobalData;
-
 class SharedCommand : public Command {
        
 public:
-       SharedCommand();        
+       SharedCommand(string);  
+       SharedCommand();
        ~SharedCommand();
-       int execute();  
-       void help() {}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "make.shared";                         }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getHelpString(); 
+       string getCitation() { return "http://www.mothur.org/wiki/Make.shared"; }
+       string getDescription()         { return "make a shared file from a list and group file"; }
+
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
        void printSharedData(vector<SharedRAbundVector*>);
-       GlobalData* globaldata;
-       ReadOTUFile* read;
+       int createMisMatchFile();
+       int readOrderFile();
+       bool isValidGroup(string, vector<string>);
+       int eliminateZeroOTUS(vector<SharedRAbundVector*>&);
+       int ListGroupSameSeqs();
+       
        SharedListVector* SharedList;
        InputData* input;
-       //map<string, SharedRAbundVector*>::iterator it;
-       //vector<SharedRAbundVector*> lookup;
+       GroupMap* groupMap;
+       vector<string> Groups, outputNames, order;
+       set<string> labels;
        ofstream out;
-       string filename;
-       bool firsttime;
+       string filename, fileroot, outputDir, listfile, groupfile, ordergroupfile;
+       bool firsttime, pickedGroups, abort, allLines;
+       map<string, ofstream*> filehandles;
+       map<string, ofstream*>::iterator it3;
 
 };