5 * Created by westcott on 5/10/10.
6 * Copyright 2010 Schloss Lab. All rights reserved.
10 #include "chopseqscommand.h"
11 #include "sequence.hpp"
13 //**********************************************************************************************************************
14 vector<string> ChopSeqsCommand::setParameters(){
16 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pfasta);
17 CommandParameter pnumbases("numbases", "Number", "", "0", "", "", "",false,true); parameters.push_back(pnumbases);
18 CommandParameter pcountgaps("countgaps", "Boolean", "", "F", "", "", "",false,false); parameters.push_back(pcountgaps);
19 CommandParameter pshort("short", "Boolean", "", "F", "", "", "",false,false); parameters.push_back(pshort);
20 CommandParameter pkeep("keep", "Multiple", "front-back", "front", "", "", "",false,false); parameters.push_back(pkeep);
21 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
22 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
24 vector<string> myArray;
25 for (int i = 0; i < parameters.size(); i++) { myArray.push_back(parameters[i].name); }
29 m->errorOut(e, "ChopSeqsCommand", "setParameters");
33 //**********************************************************************************************************************
34 string ChopSeqsCommand::getHelpString(){
36 string helpString = "";
37 helpString += "The chop.seqs command reads a fasta file and outputs a .chop.fasta containing the trimmed sequences. Note: If a sequence is completely 'chopped', an accnos file will be created with the names of the sequences removed. \n";
38 helpString += "The chop.seqs command parameters are fasta, numbases, countgaps and keep. fasta is required unless you have a valid current fasta file. numbases is required.\n";
39 helpString += "The chop.seqs command should be in the following format: chop.seqs(fasta=yourFasta, numbases=yourNum, keep=yourKeep).\n";
40 helpString += "The numbases parameter allows you to specify the number of bases you want to keep.\n";
41 helpString += "The keep parameter allows you to specify whether you want to keep the front or the back of your sequence, default=front.\n";
42 helpString += "The countgaps parameter allows you to specify whether you want to count gaps as bases, default=false.\n";
43 helpString += "The short parameter allows you to specify you want to keep sequences that are too short to chop, default=false.\n";
44 helpString += "For example, if you ran chop.seqs with numbases=200 and short=t, if a sequence had 100 bases mothur would keep the sequence rather than eliminate it.\n";
45 helpString += "Example chop.seqs(fasta=amazon.fasta, numbases=200, keep=front).\n";
46 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n";
50 m->errorOut(e, "ChopSeqsCommand", "getHelpString");
55 //**********************************************************************************************************************
56 ChopSeqsCommand::ChopSeqsCommand(){
58 abort = true; calledHelp = true;
60 vector<string> tempOutNames;
61 outputTypes["fasta"] = tempOutNames;
62 outputTypes["accnos"] = tempOutNames;
65 m->errorOut(e, "ChopSeqsCommand", "ChopSeqsCommand");
69 //**********************************************************************************************************************
70 ChopSeqsCommand::ChopSeqsCommand(string option) {
72 abort = false; calledHelp = false;
74 //allow user to run help
75 if(option == "help") { help(); abort = true; calledHelp = true; }
76 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
79 vector<string> myArray = setParameters();
81 OptionParser parser(option);
82 map<string,string> parameters = parser.getParameters();
84 ValidParameters validParameter;
85 map<string,string>::iterator it;
87 //check to make sure all parameters are valid for command
88 for (map<string,string>::iterator it = parameters.begin(); it != parameters.end(); it++) {
89 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) { abort = true; }
92 //initialize outputTypes
93 vector<string> tempOutNames;
94 outputTypes["fasta"] = tempOutNames;
95 outputTypes["accnos"] = tempOutNames;
97 //if the user changes the input directory command factory will send this info to us in the output parameter
98 string inputDir = validParameter.validFile(parameters, "inputdir", false);
99 if (inputDir == "not found"){ inputDir = ""; }
102 it = parameters.find("fasta");
103 //user has given a template file
104 if(it != parameters.end()){
105 path = m->hasPath(it->second);
106 //if the user has not given a path then, add inputdir. else leave path alone.
107 if (path == "") { parameters["fasta"] = inputDir + it->second; }
111 //check for required parameters
112 fastafile = validParameter.validFile(parameters, "fasta", true);
113 if (fastafile == "not open") { abort = true; }
114 else if (fastafile == "not found") { //if there is a current fasta file, use it
115 fastafile = m->getFastaFile();
116 if (fastafile != "") { m->mothurOut("Using " + fastafile + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
117 else { m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
118 }else { m->setFastaFile(fastafile); }
120 //if the user changes the output directory command factory will send this info to us in the output parameter
121 outputDir = validParameter.validFile(parameters, "outputdir", false); if (outputDir == "not found"){ outputDir = m->hasPath(fastafile); }
123 string temp = validParameter.validFile(parameters, "numbases", false); if (temp == "not found") { temp = "0"; }
124 m->mothurConvert(temp, numbases);
126 temp = validParameter.validFile(parameters, "countgaps", false); if (temp == "not found") { temp = "f"; }
127 countGaps = m->isTrue(temp);
129 temp = validParameter.validFile(parameters, "short", false); if (temp == "not found") { temp = "f"; }
130 Short = m->isTrue(temp);
132 keep = validParameter.validFile(parameters, "keep", false); if (keep == "not found") { keep = "front"; }
134 if (numbases == 0) { m->mothurOut("You must provide the number of bases you want to keep for the chops.seqs command."); m->mothurOutEndLine(); abort = true; }
138 catch(exception& e) {
139 m->errorOut(e, "ChopSeqsCommand", "ChopSeqsCommand");
143 //**********************************************************************************************************************
145 int ChopSeqsCommand::execute(){
148 if (abort == true) { if (calledHelp) { return 0; } return 2; }
150 string outputFileName = outputDir + m->getRootName(m->getSimpleName(fastafile)) + "chop.fasta";
151 string outputFileNameAccnos = outputDir + m->getRootName(m->getSimpleName(fastafile)) + "chop.accnos";
154 m->openOutputFile(outputFileName, out);
157 m->openOutputFile(outputFileNameAccnos, outAcc);
160 m->openInputFile(fastafile, in);
162 bool wroteAccnos = false;
168 if (m->control_pressed) { outputTypes.clear(); in.close(); out.close(); outAcc.close(); m->mothurRemove(outputFileName); m->mothurRemove(outputFileNameAccnos); return 0; }
170 if (seq.getName() != "") {
171 string newSeqString = getChopped(seq);
173 //output trimmed sequence
174 if (newSeqString != "") {
175 out << ">" << seq.getName() << endl << newSeqString << endl;
177 outAcc << seq.getName() << endl;
186 m->mothurOutEndLine();
187 m->mothurOut("Output File Name: "); m->mothurOutEndLine();
188 m->mothurOut(outputFileName); m->mothurOutEndLine(); outputNames.push_back(outputFileName); outputTypes["fasta"].push_back(outputFileName);
190 if (wroteAccnos) { m->mothurOut(outputFileNameAccnos); m->mothurOutEndLine(); outputNames.push_back(outputFileNameAccnos); outputTypes["accnos"].push_back(outputFileNameAccnos); }
191 else { m->mothurRemove(outputFileNameAccnos); }
193 m->mothurOutEndLine();
195 //set fasta file as new current fastafile
197 itTypes = outputTypes.find("fasta");
198 if (itTypes != outputTypes.end()) {
199 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
202 if (wroteAccnos) { //set accnos file as new current accnosfile
203 itTypes = outputTypes.find("accnos");
204 if (itTypes != outputTypes.end()) {
205 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setAccnosFile(current); }
213 catch(exception& e) {
214 m->errorOut(e, "ChopSeqsCommand", "execute");
218 //**********************************************************************************************************************
219 string ChopSeqsCommand::getChopped(Sequence seq) {
221 string temp = seq.getAligned();
222 string tempUnaligned = seq.getUnaligned();
225 //if needed trim sequence
226 if (keep == "front") {//you want to keep the beginning
227 int tempLength = temp.length();
229 if (tempLength > numbases) { //you have enough bases to remove some
232 int numBasesCounted = 0;
234 for (int i = 0; i < temp.length(); i++) {
236 if (toupper(temp[i]) == 'N') { temp[i] = '.'; }
240 if (numBasesCounted >= numbases) { stopSpot = i; break; }
243 if (stopSpot == 0) { temp = ""; }
244 else { temp = temp.substr(0, stopSpot+1); }
247 if (!Short) { temp = ""; } //sequence too short
249 }else { //you are keeping the back
250 int tempLength = temp.length();
251 if (tempLength > numbases) { //you have enough bases to remove some
254 int numBasesCounted = 0;
256 for (int i = (temp.length()-1); i >= 0; i--) {
258 if (toupper(temp[i]) == 'N') { temp[i] = '.'; }
262 if (numBasesCounted >= numbases) { stopSpot = i; break; }
265 if (stopSpot == 0) { temp = ""; }
266 else { temp = temp.substr(stopSpot+1); }
268 if (!Short) { temp = ""; } //sequence too short
274 //if needed trim sequence
275 if (keep == "front") {//you want to keep the beginning
276 int tempLength = tempUnaligned.length();
278 if (tempLength > numbases) { //you have enough bases to remove some
281 int numBasesCounted = 0;
283 for (int i = 0; i < temp.length(); i++) {
285 if (toupper(temp[i]) == 'N') {
288 if (tempLength < numbases) { stopSpot = 0; break; }
291 if(isalpha(temp[i])) { numBasesCounted++; }
293 if (numBasesCounted >= numbases) { stopSpot = i; break; }
296 if (stopSpot == 0) { temp = ""; }
297 else { temp = temp.substr(0, stopSpot+1); }
300 if (!Short) { temp = ""; } //sequence too short
302 }else { //you are keeping the back
303 int tempLength = tempUnaligned.length();
304 if (tempLength > numbases) { //you have enough bases to remove some
307 int numBasesCounted = 0;
309 for (int i = (temp.length()-1); i >= 0; i--) {
311 if (toupper(temp[i]) == 'N') {
314 if (tempLength < numbases) { stopSpot = 0; break; }
317 if(isalpha(temp[i])) { numBasesCounted++; }
319 if (numBasesCounted >= numbases) { stopSpot = i; break; }
322 if (stopSpot == 0) { temp = ""; }
323 else { temp = temp.substr(stopSpot); }
325 if (!Short) { temp = ""; } //sequence too short
332 catch(exception& e) {
333 m->errorOut(e, "ChopSeqsCommand", "getChopped");
337 //**********************************************************************************************************************