]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / sharedcommand.h
index 3467c7b1d9e6beb1bcd2b5af9a63f9d9bbaf8045..f1e7c48cd71ee7ff1984e43cb7bb5676a3ee42a5 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(); 
+       
+       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*>&);
+       
        SharedListVector* SharedList;
        InputData* input;
        GroupMap* groupMap;
+       vector<string> Groups, outputNames, order;
+       set<string> labels;
        ofstream out;
-       string filename, fileroot;
-       bool firsttime;
+       string filename, fileroot, outputDir, listfile, groupfile, ordergroupfile;
+       bool firsttime, pickedGroups, abort, allLines;
        map<string, ofstream*> filehandles;
        map<string, ofstream*>::iterator it3;