X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=filterseqscommand.h;h=3bf36c040231c5f801281f9d553c60bed01101c8;hb=8dd3c225255d7084e3aff8740aa4f1f1cabb367a;hp=cb02732d1ede7c7a70ec5a518426bca18a0019bf;hpb=284fd95c611ccc3b1a7875c4dacfca06d1f50ed6;p=mothur.git diff --git a/filterseqscommand.h b/filterseqscommand.h index cb02732..3bf36c0 100644 --- a/filterseqscommand.h +++ b/filterseqscommand.h @@ -18,15 +18,24 @@ class FilterSeqsCommand : public Command { public: FilterSeqsCommand(string); + FilterSeqsCommand(); ~FilterSeqsCommand() {}; - int execute(); - void help(); + + vector setParameters(); + string getCommandName() { return "filter.seqs"; } + string getCommandCategory() { return "Sequence Processing"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Filter.seqs"; } + string getDescription() { return "removes columns from alignments based on a criteria defined by the user"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: struct linePair { - unsigned long int start; - unsigned long int end; - linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {} + unsigned long long start; + unsigned long long end; + linePair(unsigned long long i, unsigned long long j) : start(i), end(j) {} }; vector lines; @@ -50,8 +59,8 @@ private: int driverRunFilter(string, string, string, linePair*); int driverCreateFilter(Filters& F, string filename, linePair* line); #ifdef USE_MPI - int driverMPIRun(int, int, MPI_File&, MPI_File&, vector&); - int MPICreateFilter(int, int, Filters&, MPI_File&, vector&); + int driverMPIRun(int, int, MPI_File&, MPI_File&, vector&); + int MPICreateFilter(int, int, Filters&, MPI_File&, vector&); #endif };