X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=secondarystructurecommand.h;h=becafc5bb3f29073d0e72859e495f0364c351dfb;hb=96dbe925073caefaed6e6db85659c144a806aeb1;hp=2e6191ca67f47f92f38bb8c030a8ad3e32920af6;hpb=f89b6501b7d80e705b6c50ff2c8bdd8bb5d2edf7;p=mothur.git diff --git a/secondarystructurecommand.h b/secondarystructurecommand.h index 2e6191c..becafc5 100644 --- a/secondarystructurecommand.h +++ b/secondarystructurecommand.h @@ -33,15 +33,28 @@ class AlignCheckCommand : public Command { public: AlignCheckCommand(string); - ~AlignCheckCommand(){}; - int execute(); - void help(); - + AlignCheckCommand(); + ~AlignCheckCommand(){} + + vector setParameters(); + string getCommandName() { return "align.check"; } + string getCommandCategory() { return "Sequence Processing"; } + string getOutputFileNameTag(string, string); + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Align.check"; } + string getDescription() { return "calculate the number of potentially misaligned bases in a 16S rRNA gene sequence alignment"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: vector structMap; - string mapfile, fastafile, outputDir; + string mapfile, fastafile, outputDir, namefile, countfile; bool abort; int seqLength, haderror; + vector outputNames; + map nameMap; void readMap(); statData getStats(string sequence);