X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=chimerabellerophoncommand.h;h=015f2b78a6d412deda2dc639b4c7a2b3b055ec17;hb=28bcfc4a41b8b82f66636587e0d4d355d07cbdd1;hp=e450b52bbe3326f5677cd914f0fa19c9c7970962;hpb=fdc1f6eaf544f695fc1511f24bddd7e6069c33ba;p=mothur.git diff --git a/chimerabellerophoncommand.h b/chimerabellerophoncommand.h index e450b52..015f2b7 100644 --- a/chimerabellerophoncommand.h +++ b/chimerabellerophoncommand.h @@ -20,9 +20,20 @@ class ChimeraBellerophonCommand : public Command { public: ChimeraBellerophonCommand(string); - ~ChimeraBellerophonCommand(); - int execute(); - void help(); + ChimeraBellerophonCommand(); + ~ChimeraBellerophonCommand(){} + + vector setParameters(); + string getCommandName() { return "chimera.bellerophon"; } + string getCommandCategory() { return "Sequence Processing"; } + string getOutputFileNameTag(string, string); + string getHelpString(); + string getCitation() { return "Huber T, Faulkner G, Hugenholtz P (2004). Bellerophon: a program to detect chimeric sequences in multiple sequence alignments. Bioinformatics 20: 2317-9. \nhttp://www.mothur.org/wiki/Chimera.bellerophon"; } + string getDescription() { return "detect chimeric sequences"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: @@ -30,6 +41,8 @@ private: string fastafile, outputDir; int processors, window, increment, numSeqs; Chimera* chimera; + vector outputNames; + vector fastaFileNames; }; /***********************************************************/