forked from mothur/mothur
-
Notifications
You must be signed in to change notification settings - Fork 1
/
chimeraccodecommand.h
66 lines (50 loc) · 1.74 KB
/
chimeraccodecommand.h
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
58
59
60
61
62
63
64
65
#ifndef CHIMERACCODECOMMAND_H
#define CHIMERACCODECOMMAND_H
/*
* chimeraccodecommand.h
* Mothur
*
* Created by westcott on 3/30/10.
* Copyright 2010 Schloss Lab. All rights reserved.
*
*/
#include "mothur.h"
#include "command.hpp"
#include "chimera.h"
/***********************************************************/
class ChimeraCcodeCommand : public Command {
public:
ChimeraCcodeCommand(string);
ChimeraCcodeCommand();
~ChimeraCcodeCommand(){}
vector<string> setParameters();
string getCommandName() { return "chimera.ccode"; }
string getCommandCategory() { return "Sequence Processing"; }
string getHelpString();
string getOutputPattern(string);
string getCitation() { return "Gonzalez JM, Zimmermann J, Saiz-Jimenez C (2005). Evaluating putative chimeric sequences from PCR-amplified products. Bioinformatics 21: 333-7. \nhttp://www.mothur.org/wiki/Chimera.ccode"; }
string getDescription() { return "detect chimeric sequences"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
struct linePair {
unsigned long long start;
unsigned long long end;
linePair(unsigned long long i, unsigned long long j) : start(i), end(j) {}
};
vector<int> processIDS; //processid
vector<linePair*> lines;
int driver(linePair*, string, string, string);
int createProcesses(string, string, string);
#ifdef USE_MPI
int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<unsigned long long>&);
#endif
bool abort, filter, save;
string fastafile, templatefile, outputDir, maskfile;
int processors, window, numwanted, numSeqs, templateSeqsLength;
Chimera* chimera;
vector<string> fastaFileNames;
vector<string> outputNames;
};
/***********************************************************/
#endif