X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=listseqscommand.cpp;h=bfbb0788c5092382f22bea643c5405674361dd67;hb=957d67f7d8bbadfd2930de061e89fd9b149270fd;hp=ebfd07565bcca4458d7ce51b4911d5cc659e711e;hpb=1d898dc6edaf9e9f287fab53bf1f21fb29757a17;p=mothur.git diff --git a/listseqscommand.cpp b/listseqscommand.cpp index ebfd075..bfbb078 100644 --- a/listseqscommand.cpp +++ b/listseqscommand.cpp @@ -49,7 +49,26 @@ string ListSeqsCommand::getHelpString(){ exit(1); } } - +//********************************************************************************************************************** +string ListSeqsCommand::getOutputFileNameTag(string type, string inputName=""){ + try { + string outputFileName = ""; + map >::iterator it; + + //is this a type this command creates + it = outputTypes.find(type); + if (it == outputTypes.end()) { m->mothurOut("[ERROR]: this command doesn't create a " + type + " output file.\n"); } + else { + if (type == "accnos") { outputFileName = "accnos"; } + else { m->mothurOut("[ERROR]: No definition for type " + type + " output file tag.\n"); m->control_pressed = true; } + } + return outputFileName; + } + catch(exception& e) { + m->errorOut(e, "ListSeqsCommand", "getOutputFileNameTag"); + exit(1); + } +} //********************************************************************************************************************** ListSeqsCommand::ListSeqsCommand(){ try { @@ -71,7 +90,7 @@ ListSeqsCommand::ListSeqsCommand(string option) { //allow user to run help if(option == "help") { help(); abort = true; calledHelp = true; } - + else if(option == "citation") { citation(); abort = true; calledHelp = true;} else { vector myArray = setParameters(); @@ -150,15 +169,18 @@ ListSeqsCommand::ListSeqsCommand(string option) { //check for required parameters fastafile = validParameter.validFile(parameters, "fasta", true); if (fastafile == "not open") { abort = true; } - else if (fastafile == "not found") { fastafile = ""; } + else if (fastafile == "not found") { fastafile = ""; } + else { m->setFastaFile(fastafile); } namefile = validParameter.validFile(parameters, "name", true); if (namefile == "not open") { abort = true; } else if (namefile == "not found") { namefile = ""; } + else { m->setNameFile(namefile); } groupfile = validParameter.validFile(parameters, "group", true); if (groupfile == "not open") { abort = true; } else if (groupfile == "not found") { groupfile = ""; } + else { m->setGroupFile(groupfile); } alignfile = validParameter.validFile(parameters, "alignreport", true); if (alignfile == "not open") { abort = true; } @@ -167,10 +189,12 @@ ListSeqsCommand::ListSeqsCommand(string option) { listfile = validParameter.validFile(parameters, "list", true); if (listfile == "not open") { abort = true; } else if (listfile == "not found") { listfile = ""; } - + else { m->setListFile(listfile); } + taxfile = validParameter.validFile(parameters, "taxonomy", true); if (taxfile == "not open") { abort = true; } else if (taxfile == "not found") { taxfile = ""; } + else { m->setTaxonomyFile(taxfile); } if ((fastafile == "") && (namefile == "") && (listfile == "") && (groupfile == "") && (alignfile == "") && (taxfile == "")) { m->mothurOut("You must provide a file."); m->mothurOutEndLine(); abort = true; } @@ -209,7 +233,7 @@ int ListSeqsCommand::execute(){ if (outputDir == "") { outputDir += m->hasPath(inputFileName); } - string outputFileName = outputDir + m->getRootName(m->getSimpleName(inputFileName)) + "accnos"; + string outputFileName = outputDir + m->getRootName(m->getSimpleName(inputFileName)) + getOutputFileNameTag("accnos"); ofstream out; m->openOutputFile(outputFileName, out); @@ -218,13 +242,13 @@ int ListSeqsCommand::execute(){ //output to .accnos file for (int i = 0; i < names.size(); i++) { - if (m->control_pressed) { outputTypes.clear(); out.close(); remove(outputFileName.c_str()); return 0; } + if (m->control_pressed) { outputTypes.clear(); out.close(); m->mothurRemove(outputFileName); return 0; } out << names[i] << endl; } out.close(); - if (m->control_pressed) { outputTypes.clear(); remove(outputFileName.c_str()); return 0; } + if (m->control_pressed) { outputTypes.clear(); m->mothurRemove(outputFileName); return 0; } m->setAccnosFile(outputFileName); @@ -257,18 +281,32 @@ int ListSeqsCommand::readFasta(){ m->openInputFile(fastafile, in); string name; + //ofstream out; + //string newFastaName = outputDir + m->getRootName(m->getSimpleName(fastafile)) + "numsAdded.fasta"; + //m->openOutputFile(newFastaName, out); + //int count = 1; + //string lastName = ""; + while(!in.eof()){ if (m->control_pressed) { in.close(); return 0; } Sequence currSeq(in); name = currSeq.getName(); + //if (lastName == "") { lastName = name; } + //if (name != lastName) { count = 1; } + // lastName = name; + + //Sequence newSeq(name+"_"+toString(count), currSeq.getAligned()); + //newSeq.printSequence(out); if (name != "") { names.push_back(name); } m->gobble(in); + //count++; } in.close(); + //out.close(); return 0; @@ -294,13 +332,7 @@ int ListSeqsCommand::readList(){ if (m->control_pressed) { in.close(); return 0; } - while (binnames.find_first_of(',') != -1) { - string name = binnames.substr(0,binnames.find_first_of(',')); - binnames = binnames.substr(binnames.find_first_of(',')+1, binnames.length()); - names.push_back(name); - } - - names.push_back(binnames); + m->splitAtComma(binnames, names); } } in.close(); @@ -330,14 +362,7 @@ int ListSeqsCommand::readName(){ in >> secondCol; //parse second column saving each name - while (secondCol.find_first_of(',') != -1) { - name = secondCol.substr(0,secondCol.find_first_of(',')); - secondCol = secondCol.substr(secondCol.find_first_of(',')+1, secondCol.length()); - names.push_back(name); - } - - //get name after last , - names.push_back(secondCol); + m->splitAtComma(secondCol, names); m->gobble(in); } @@ -394,14 +419,14 @@ int ListSeqsCommand::readAlign(){ if (!in.eof()) { in >> junk; } else { break; } } - + //m->getline(in); while(!in.eof()){ if (m->control_pressed) { in.close(); return 0; } in >> name; //read from first column - + //m->getline(in); //read rest for (int i = 0; i < 15; i++) { if (!in.eof()) { in >> junk; }