]> git.donarmstrong.com Git - mothur.git/blob - seqerrorcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / seqerrorcommand.h
1 #ifndef SEQERRORCOMMAND
2 #define SEQERRORCOMMAND
3
4 /*
5  *  seqerrorcommand.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 7/15/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14 #include "command.hpp"
15 #include "sequence.hpp"
16
17 struct Compare {
18         int AA, AT, AG, AC,     TA, TT, TG, TC, GA, GT, GG, GC, CA, CT, CG, CC, NA, NT, NG, NC, Ai, Ti, Gi, Ci, Ni, dA, dT, dG, dC;
19         string refName, queryName, sequence;
20         double errorRate;
21         int weight, matches, mismatches, total;
22         
23         Compare(){
24                 AA=0; AT=0; AG=0; AC=0;
25                 TA=0; TT=0; TG=0; TC=0;
26                 GA=0; GT=0; GG=0; GC=0;
27                 CA=0; CT=0; CG=0; CC=0;
28                 NA=0; NT=0; NG=0; NC=0;
29                 Ai=0; Ti=0; Gi=0; Ci=0; Ni=0;
30                 dA=0; dT=0; dG=0; dC=0;
31                 refName = "";
32                 queryName = "";
33                 weight = 1;
34                 matches = 0;
35                 mismatches = 0;
36                 total = 0;
37                 errorRate = 1.0000;
38                 sequence = "";
39         }
40 };
41
42 class SeqErrorCommand : public Command {
43 public:
44         SeqErrorCommand(string);
45         SeqErrorCommand();
46         ~SeqErrorCommand() {}
47         
48         vector<string> setParameters();
49         string getCommandName()                 { return "seq.error";                           }
50         string getCommandCategory()             { return "Sequence Processing";         }
51         string getHelpString(); 
52         
53         int execute(); 
54         void help() { m->mothurOut(getHelpString()); }  
55         
56 private:
57         bool abort;
58
59         void getReferences();
60         map<string,int> getWeights();
61         Compare getErrors(Sequence, Sequence);
62         void printErrorHeader();
63         void printErrorData(Compare, int);
64         void printSubMatrix();
65         void printErrorFRFile(map<char, vector<int> >, map<char, vector<int> >);
66         void printErrorQuality(map<char, vector<int> >);
67         void printQualityFR(vector<vector<int> >, vector<vector<int> >);
68
69         string queryFileName, referenceFileName, qualFileName, reportFileName, namesFileName, outputDir;
70         double threshold;
71         bool ignoreChimeras;
72         int numRefs;
73         int maxLength;
74         ofstream errorSummaryFile, errorSeqFile;
75         vector<string> outputNames;
76         
77         vector<Sequence> referenceSeqs;
78         vector<vector<int> > substitutionMatrix;
79 };
80
81 #endif