X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=deconvolutecommand.h;h=9c8fd22d702f8a8b98ee12d682d6f880e5c1fb0e;hb=bd93b1a6f9fe9a6a4a7ac2e9f106e5c83a438856;hp=aaed841ed8012a274cb96c3153463b4c1b0a2bc0;hpb=74c78f9abd9e733f0c2f812efec97a76632fcbf8;p=mothur.git diff --git a/deconvolutecommand.h b/deconvolutecommand.h index aaed841..9c8fd22 100644 --- a/deconvolutecommand.h +++ b/deconvolutecommand.h @@ -11,7 +11,6 @@ #include "command.hpp" #include "fastamap.h" -#include "globaldata.hpp" /* The unique.seqs command reads a fasta file, finds the duplicate sequences and outputs a names file containing 2 columns. The first being the groupname and the second the list of identical sequence names. */ @@ -20,17 +19,15 @@ class DeconvoluteCommand : public Command { public: - DeconvoluteCommand() {}; - ~DeconvoluteCommand() { delete fastamap; }; - int execute(); + DeconvoluteCommand(string); + ~DeconvoluteCommand() { }; + int execute(); + void help(); private: - GlobalData* globaldata; - FastaMap* fastamap; - ifstream in; - ofstream out, outFasta; - string filename, outputFileName, outFastafile; + string inFastaName, oldNameMapFName, outputDir; + bool abort; }; #endif