1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#ifndef CHIMERAPERSEUSCOMMAND_H
#define CHIMERAPERSEUSCOMMAND_H
/*
* chimeraperseuscommand.h
* Mothur
*
* Created by westcott on 10/26/11.
* Copyright 2011 Schloss Lab. All rights reserved.
*
*/
#include "mothur.h"
#include "command.hpp"
#include "sequenceparser.h"
#include "sequencecountparser.h"
#include "myPerseus.h"
#include "counttable.h"
/***********************************************************/
class ChimeraPerseusCommand : public Command {
public:
ChimeraPerseusCommand(string);
~ChimeraPerseusCommand() = default;
vector<string> setParameters();
string getCommandName() { return "chimera.perseus"; }
string getCommandCategory() { return "Sequence Processing"; }
string getHelpString();
string getOutputPattern(string);
string getCitation() { return "Quince C, Lanzen A, Davenport RJ, Turnbaugh PJ (2011). Removing noise from pyrosequenced amplicons. BMC Bioinformatics 12:38.\nEdgar,R.C., Haas,B.J., Clemente,J.C., Quince,C. and Knight,R. (2011), UCHIME improves sensitivity and speed of chimera detection. Bioinformatics 27:2194.\nhttp://www.mothur.org/wiki/Chimera.perseus\n"; }
string getDescription() { return "detect chimeric sequences"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
bool abort, hasCount, dups, removeChimeras;
string fastafile, countfile;
int processors, alignLength;
double cutoff, alpha, beta;
vector<string> outputNames;
string getCountFile(string&);
vector<seqData> readFiles(string, map<string, int>);
int deconvoluteResults(string, string);
int createProcessesGroups(map<string, vector<string> >&, string, string, string, string, vector<string>, string, string, int&);
};
/***********************************************************/
#endif
|