]> git.donarmstrong.com Git - mothur.git/blobdiff - binsequencecommand.h
fixed bug with phylo.diversity. not calculating as intended.
[mothur.git] / binsequencecommand.h
index e2ff648283a9c00569a8d2a4170a040b4a494902..6ea7305265a6725a6a6290f6de028b307c5e8a0b 100644 (file)
@@ -24,9 +24,10 @@ class GlobalData;
 class BinSeqCommand : public Command {
        
 public:
-       BinSeqCommand();        
+       BinSeqCommand(string);  
        ~BinSeqCommand();
-       int execute();  
+       int execute();
+       void help();    
        
 private:
        GlobalData* globaldata;
@@ -35,11 +36,15 @@ private:
        InputData* input;
        FastaMap* fasta;
        GroupMap* groupMap;
-       string filename, fastafile, namesfile, groupfile;
+       bool abort, allLines;
+       set<string> labels; //holds labels to be used
+       string filename, fastafile, namesfile, groupfile, label, outputDir;
        ofstream out;
        ifstream in, inNames;
+       vector<string> outputNames;
        
        void readNamesFile();
+       int process(ListVector*);
 };
 
 #endif