X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=binsequencecommand.h;h=6f9f69d3a7b13dbabe73c09e21e787f55dadff81;hb=29c0d3ec01be5372807eb86261100d77de253787;hp=e2ff648283a9c00569a8d2a4170a040b4a494902;hpb=81a77fdce5e9b060c71b162305ddd9fa4308f78a;p=mothur.git diff --git a/binsequencecommand.h b/binsequencecommand.h index e2ff648..6f9f69d 100644 --- a/binsequencecommand.h +++ b/binsequencecommand.h @@ -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 lines; //hold lines to be used + set labels; //holds labels to be used + string filename, fastafile, namesfile, groupfile, line, label; ofstream out; ifstream in, inNames; void readNamesFile(); + int process(ListVector*, int); }; #endif