]> git.donarmstrong.com Git - mothur.git/blobdiff - binsequencecommand.h
removing mallard
[mothur.git] / binsequencecommand.h
index bc2f883fe5f3e232d935780f7660e5a53647b18b..8ea88cbfcff767eec8461df493cea50217675404 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,12 +36,15 @@ private:
        InputData* input;
        FastaMap* fasta;
        GroupMap* groupMap;
-       string filename, fastafile, namesfile, groupfile;
+       bool abort, allLines;
+       set<int> lines; //hold lines to be used
+       set<string> labels; //holds labels to be used
+       string filename, fastafile, namesfile, groupfile, line, label;
        ofstream out;
        ifstream in, inNames;
        
        void readNamesFile();
-       int process(ListVector*, int);
+       int process(ListVector*);
 };
 
 #endif