]> git.donarmstrong.com Git - mothur.git/blob - seqsummarycommand.h
Revert to previous commit
[mothur.git] / seqsummarycommand.h
1 #ifndef SEQSUMMARYCOMMAND_H
2 #define SEQSUMMARYCOMMAND_H
3
4 /*
5  *  seqcoordcommand.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 5/30/09.
9  *  Copyright 2009 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14 #include "command.hpp"
15 #include "sequence.hpp"
16
17 /**************************************************************************************************/
18
19 class SeqSummaryCommand : public Command {
20 public:
21         SeqSummaryCommand(string);
22         SeqSummaryCommand();
23         ~SeqSummaryCommand(){}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "summary.seqs";                        }
27         string getCommandCategory()             { return "Sequence Processing";         }
28         string getHelpString(); 
29         string getCitation() { return "http://www.mothur.org/wiki/Summary.seqs"; }
30         string getDescription()         { return "summarize the quality of sequences in an unaligned or aligned fasta file"; }
31         
32         int execute(); 
33         void help() { m->mothurOut(getHelpString()); }          
34 private:
35         bool abort;
36         string fastafile, outputDir, namefile;
37         int processors;
38         vector<string> outputNames;
39         map<string, int> nameMap;
40         
41         struct linePair {
42                 unsigned long long start;
43                 unsigned long long end;
44                 linePair(unsigned long long i, unsigned long long j) : start(i), end(j) {}
45         };
46
47         vector<linePair*> lines;
48         vector<int> processIDS;
49         
50         int createProcessesCreateSummary(vector<int>&, vector<int>&, vector<int>&, vector<int>&, vector<int>&, string, string);
51         int driverCreateSummary(vector<int>&, vector<int>&, vector<int>&, vector<int>&, vector<int>&, string, string, linePair*);       
52
53         #ifdef USE_MPI
54         int MPICreateSummary(int, int, vector<int>&, vector<int>&, vector<int>&, vector<int>&, vector<int>&, MPI_File&, MPI_File&, vector<unsigned long long>&);        
55         #endif
56
57
58 };
59
60 /**************************************************************************************************/
61 //custom data structure for threads to use.
62 // This is passed by void pointer so it can be any data type
63 // that can be passed using a single void pointer (LPVOID).
64 struct seqSumData {
65         vector<int> startPosition;
66         vector<int> endPosition;
67         vector<int> seqLength; 
68         vector<int> ambigBases; 
69         vector<int> longHomoPolymer; 
70         string filename; 
71         string sumFile; 
72         unsigned long long start;
73         unsigned long long end;
74         int count;
75         MothurOut* m;
76         string namefile;
77         map<string, int> nameMap;
78         
79         
80         seqSumData(){}
81         seqSumData(string f, string sf, MothurOut* mout, unsigned long long st, unsigned long long en, string na, map<string, int> nam) {
82                 filename = f;
83                 sumFile = sf;
84                 m = mout;
85                 start = st;
86                 end = en;
87                 namefile = na;
88                 nameMap = nam;
89                 count = 0;
90         }
91 };
92
93 /**************************************************************************************************/
94 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) || (__linux__) || (__unix__) || (__unix)
95 #else
96 static DWORD WINAPI MySeqSumThreadFunction(LPVOID lpParam){ 
97         seqSumData* pDataArray;
98         pDataArray = (seqSumData*)lpParam;
99         
100         try {
101                 ofstream outSummary;
102                 pDataArray->m->openOutputFile(pDataArray->sumFile, outSummary);
103                 
104                 ifstream in;
105                 pDataArray->m->openInputFile(pDataArray->filename, in);
106
107                 //print header if you are process 0
108                 if ((pDataArray->start == 0) || (pDataArray->start == 1)) {
109                         outSummary << "seqname\tstart\tend\tnbases\tambigs\tpolymer\tnumSeqs" << endl;  
110                         in.seekg(0);
111                 }else { //this accounts for the difference in line endings. 
112                         in.seekg(pDataArray->start-1); pDataArray->m->gobble(in); 
113                 }
114                 
115                 pDataArray->count = pDataArray->end;
116                 for(int i = 0; i < pDataArray->end; i++){ //end is the number of sequences to process
117                         
118                         if (pDataArray->m->control_pressed) { in.close(); outSummary.close(); pDataArray->count = 1; return 1; }
119                         
120                         Sequence current(in); pDataArray->m->gobble(in); 
121                         
122                         if (current.getName() != "") {
123                                 
124                                 int num = 1;
125                                 if (pDataArray->namefile != "") {
126                                         //make sure this sequence is in the namefile, else error 
127                                         map<string, int>::iterator it = pDataArray->nameMap.find(current.getName());
128                                         
129                                         if (it == pDataArray->nameMap.end()) { pDataArray->m->mothurOut("[ERROR]: " + current.getName() + " is not in your namefile, please correct."); pDataArray->m->mothurOutEndLine(); pDataArray->m->control_pressed = true; }
130                                         else { num = it->second; }
131                                 }
132                                 
133                                 //for each sequence this sequence represents
134                                 for (int i = 0; i < num; i++) {
135                                         pDataArray->startPosition.push_back(current.getStartPos());
136                                         pDataArray->endPosition.push_back(current.getEndPos());
137                                         pDataArray->seqLength.push_back(current.getNumBases());
138                                         pDataArray->ambigBases.push_back(current.getAmbigBases());
139                                         pDataArray->longHomoPolymer.push_back(current.getLongHomoPolymer());
140                                 }
141                                 
142                                 outSummary << current.getName() << '\t';
143                                 outSummary << current.getStartPos() << '\t' << current.getEndPos() << '\t';
144                                 outSummary << current.getNumBases() << '\t' << current.getAmbigBases() << '\t';
145                                 outSummary << current.getLongHomoPolymer() << '\t' << num << endl;
146                         }
147                 }
148                 
149                 in.close();
150                 outSummary.close();
151                 
152                 return 0;
153                 
154         }
155         catch(exception& e) {
156                 pDataArray->m->errorOut(e, "SeqSummaryCommand", "MySeqSumThreadFunction");
157                 exit(1);
158         }
159
160 #endif
161
162
163
164
165 #endif
166
167 /**************************************************************************************************/
168
169