]> git.donarmstrong.com Git - mothur.git/blob - chimeracheckcommand.h
working on citations
[mothur.git] / chimeracheckcommand.h
1 #ifndef CHIMERACHECKCOMMAND_H
2 #define CHIMERACHECKCOMMAND_H
3
4 /*
5  *  chimeracheckcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 3/31/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14 #include "command.hpp"
15 #include "chimera.h"
16 #include "chimeracheckrdp.h"
17
18
19 /***********************************************************/
20
21 class ChimeraCheckCommand : public Command {
22 public:
23         ChimeraCheckCommand(string);
24         ChimeraCheckCommand();
25         ~ChimeraCheckCommand(){}
26         
27         vector<string> setParameters();
28         string getCommandName()                 { return "chimera.check";               }
29         string getCommandCategory()             { return "Sequence Processing"; }
30         string getHelpString(); 
31         string getCitation() { return "CHIMERA_CHECK version 2.7 written by Niels Larsen (http://wdcm.nig.ac.jp/RDP/docs/chimera_doc.html) \nhttp://www.mothur.org/wiki/Chimera.check"; }
32
33         int execute(); 
34         void help() { m->mothurOut(getHelpString()); }  
35         
36         
37 private:
38
39         struct linePair {
40                 unsigned long int start;
41                 unsigned long int end;
42                 linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
43         };
44
45         vector<int> processIDS;   //processid
46         vector<linePair*> lines;
47         
48         int driver(linePair*, string, string);
49         int createProcesses(string, string);
50                 
51         #ifdef USE_MPI
52         int driverMPI(int, int, MPI_File&, MPI_File&, vector<unsigned long int>&);
53         #endif
54
55         bool abort, svg;
56         string fastafile, templatefile, namefile, outputDir;
57         int processors, increment, ksize, numSeqs, templateSeqsLength;
58         Chimera* chimera;
59         vector<string> fastaFileNames;
60         vector<string> nameFileNames;
61         vector<string> outputNames;
62 };
63
64 /***********************************************************/
65
66 #endif
67
68