X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=chimerapintailcommand.h;h=fa195e7253e870f2a38b8e72ca90a1a6875e4652;hp=0ddfc1c6229758991e74b0def36a778182a74da6;hb=d1c97b8c04bb75faca1e76ffad60b37a4d789d3d;hpb=fdc1f6eaf544f695fc1511f24bddd7e6069c33ba diff --git a/chimerapintailcommand.h b/chimerapintailcommand.h index 0ddfc1c..fa195e7 100644 --- a/chimerapintailcommand.h +++ b/chimerapintailcommand.h @@ -13,7 +13,7 @@ #include "mothur.h" #include "command.hpp" #include "chimera.h" - +#include "referencedb.h" /***********************************************************/ @@ -22,17 +22,29 @@ class ChimeraPintailCommand : public Command { public: ChimeraPintailCommand(string); - ~ChimeraPintailCommand(); - int execute(); - void help(); + ChimeraPintailCommand(); + ~ChimeraPintailCommand(){} + + vector setParameters(); + string getCommandName() { return "chimera.pintail"; } + string getCommandCategory() { return "Sequence Processing"; } + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "Ashelford KE, Chuzhanova NA, Fry JC, Jones AJ, Weightman AJ (2005). At least 1 in 20 16S rRNA sequence records currently held in public repositories is estimated to contain substantial anomalies. Appl Environ Microbiol 71: 7724-36. \nAshelford KE, Chuzhanova NA, Fry JC, Jones AJ, Weightman AJ (2006). New screening software shows that most recent large 16S rRNA gene clone libraries contain chimeras. Appl Environ Microbiol 72: 5734-41. \nhttp://www.mothur.org/wiki/Chimera.pintail"; } + string getDescription() { return "detect chimeric sequences"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: - + ReferenceDB* rdb; + struct linePair { - int start; - int numSeqs; - linePair(long int i, int j) : start(i), numSeqs(j) {} + unsigned long long start; + unsigned long long end; + linePair(unsigned long long i, unsigned long long j) : start(i), end(j) {} }; + vector processIDS; //processid vector lines; @@ -40,15 +52,15 @@ private: int createProcesses(string, string, string); #ifdef USE_MPI - int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector&); + int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector&); #endif - bool abort, filter, MPIWroteAccnos; - string fastafile, templatefile, consfile, quanfile, maskfile, outputDir; + bool abort, filter, save; + string fastafile, templatefile, consfile, quanfile, maskfile, outputDir, inputDir; int processors, window, increment, numSeqs, templateSeqsLength; Chimera* chimera; - - + vector outputNames; + vector fastaFileNames; }; /***********************************************************/