1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
|
/*
* chimeraslayercommand.cpp
* Mothur
*
* Created by westcott on 3/31/10.
* Copyright 2010 Schloss Lab. All rights reserved.
*
*/
#include "chimeraslayercommand.h"
#include "uniqueseqscommand.h"
#include "sequenceparser.h"
#include "counttable.h"
#include "removeseqscommand.h"
//**********************************************************************************************************************
vector<string> ChimeraSlayerCommand::setParameters(){
try {
CommandParameter ptemplate("reference", "InputTypes", "", "", "none", "none", "none","",false,true,true); parameters.push_back(ptemplate);
CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none","chimera-accnos",false,true,true); parameters.push_back(pfasta);
CommandParameter pname("name", "InputTypes", "", "", "NameCount", "none", "none","",false,false,true); parameters.push_back(pname);
CommandParameter pcount("count", "InputTypes", "", "", "NameCount-CountGroup", "none", "none","",false,false,true); parameters.push_back(pcount);
CommandParameter pgroup("group", "InputTypes", "", "", "CountGroup", "none", "none","",false,false,true); parameters.push_back(pgroup);
CommandParameter pwindow("window", "Number", "", "50", "", "", "","",false,false); parameters.push_back(pwindow);
CommandParameter pksize("ksize", "Number", "", "7", "", "", "","",false,false); parameters.push_back(pksize);
CommandParameter pmatch("match", "Number", "", "5.0", "", "", "","",false,false); parameters.push_back(pmatch);
CommandParameter pmismatch("mismatch", "Number", "", "-4.0", "", "", "","",false,false); parameters.push_back(pmismatch);
CommandParameter pminsim("minsim", "Number", "", "90", "", "", "","",false,false); parameters.push_back(pminsim);
CommandParameter pmincov("mincov", "Number", "", "70", "", "", "","",false,false); parameters.push_back(pmincov);
CommandParameter pminsnp("minsnp", "Number", "", "10", "", "", "","",false,false); parameters.push_back(pminsnp);
CommandParameter pminbs("minbs", "Number", "", "90", "", "", "","",false,false); parameters.push_back(pminbs);
CommandParameter prealign("realign", "Boolean", "", "T", "", "", "","",false,false); parameters.push_back(prealign);
CommandParameter ptrim("trim", "Boolean", "", "F", "", "", "","fasta",false,false); parameters.push_back(ptrim);
CommandParameter psplit("split", "Boolean", "", "F", "", "", "","",false,false); parameters.push_back(psplit);
CommandParameter pnumwanted("numwanted", "Number", "", "15", "", "", "","",false,false); parameters.push_back(pnumwanted);
CommandParameter piters("iters", "Number", "", "1000", "", "", "","",false,false); parameters.push_back(piters);
CommandParameter pdivergence("divergence", "Number", "", "1.007", "", "", "","",false,false); parameters.push_back(pdivergence);
CommandParameter pdups("dereplicate", "Boolean", "", "F", "", "", "","",false,false); parameters.push_back(pdups);
CommandParameter premovechimeras("removechimeras", "Boolean", "", "t", "", "", "","alns",false,false); parameters.push_back(premovechimeras);
CommandParameter pparents("parents", "Number", "", "3", "", "", "","",false,false); parameters.push_back(pparents);
CommandParameter pincrement("increment", "Number", "", "5", "", "", "","",false,false); parameters.push_back(pincrement);
CommandParameter pseed("seed", "Number", "", "0", "", "", "","",false,false); parameters.push_back(pseed);
CommandParameter pinputdir("inputdir", "String", "", "", "", "", "","",false,false); parameters.push_back(pinputdir);
CommandParameter poutputdir("outputdir", "String", "", "", "", "", "","",false,false); parameters.push_back(poutputdir);
abort = false; calledHelp = false;
vector<string> tempOutNames;
outputTypes["chimera"] = tempOutNames;
outputTypes["accnos"] = tempOutNames;
outputTypes["fasta"] = tempOutNames;
outputTypes["count"] = tempOutNames;
vector<string> myArray;
for (int i = 0; i < parameters.size(); i++) { myArray.push_back(parameters[i].name); }
return myArray;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "setParameters");
exit(1);
}
}
//**********************************************************************************************************************
string ChimeraSlayerCommand::getHelpString(){
try {
string helpString = "";
helpString += "The chimera.slayer command reads a fastafile and referencefile and outputs potentially chimeric sequences.\n";
helpString += "This command was modeled after the chimeraSlayer written by the Broad Institute.\n";
helpString += "The chimera.slayer command parameters are fasta, name, group, template, processors, dereplicate, removechimeras, trim, ksize, window, match, mismatch, divergence, minsim, mincov, minbs, minsnp, parents, iters, increment, numwanted and realign.\n";
helpString += "The fasta parameter allows you to enter the fasta file containing your potentially chimeric sequences, and is required, unless you have a valid current fasta file. \n";
helpString += "The name parameter allows you to provide a name file, if you are using reference=self. \n";
helpString += "The group parameter allows you to provide a group file. The group file can be used with a namesfile and reference=self. When checking sequences, only sequences from the same group as the query sequence will be used as the reference. \n";
helpString += "The count parameter allows you to provide a count file. The count file reference=self. If your count file contains group information, when checking sequences, only sequences from the same group as the query sequence will be used as the reference. When you use a count file with group info and dereplicate=T, mothur will create a *.pick.count_table file containing seqeunces after chimeras are removed. \n";
helpString += "The reference parameter allows you to enter a reference file containing known non-chimeric sequences, and is required. You may also set template=self, in this case the abundant sequences will be used as potential parents. \n";
helpString += "If the dereplicate parameter is false, then if one group finds the seqeunce to be chimeric, then all groups find it to be chimeric, default=f.\n";
helpString += "The trim parameter allows you to output a new fasta file containing your sequences with the chimeric ones trimmed to include only their longest piece, default=F. \n";
helpString += "The split parameter allows you to check both pieces of non-chimeric sequence for chimeras, thus looking for trimeras and quadmeras. default=F. \n";
helpString += "The window parameter allows you to specify the window size for searching for chimeras, default=50. \n";
helpString += "The increment parameter allows you to specify how far you move each window while finding chimeric sequences, default=5.\n";
helpString += "The numwanted parameter allows you to specify how many sequences you would each query sequence compared with, default=15.\n";
helpString += "The ksize parameter allows you to input kmersize, default is 7, used if search is kmer. \n";
helpString += "The match parameter allows you to reward matched bases, default is 5. \n";
helpString += "The parents parameter allows you to select the number of potential parents to investigate from the numwanted best matches after rating them, default is 3. \n";
helpString += "The mismatch parameter allows you to penalize mismatched bases, default is -4. \n";
helpString += "The divergence parameter allows you to set a cutoff for chimera determination, default is 1.007. \n";
helpString += "The iters parameter allows you to specify the number of bootstrap iters to do with the chimeraslayer method, default=1000.\n";
helpString += "The minsim parameter allows you to specify a minimum similarity with the parent fragments, default=90. \n";
helpString += "The mincov parameter allows you to specify minimum coverage by closest matches found in template. Default is 70, meaning 70%. \n";
helpString += "The minbs parameter allows you to specify minimum bootstrap support for calling a sequence chimeric. Default is 90, meaning 90%. \n";
helpString += "The minsnp parameter allows you to specify percent of SNPs to sample on each side of breakpoint for computing bootstrap support (default: 10) \n";
helpString += "The realign parameter allows you to realign the query to the potential parents. Choices are true or false, default true. \n";
helpString += "The removechimeras parameter allows you to indicate you would like to automatically remove the sequences that are flagged as chimeric. Default=t.\n";
helpString += "The chimera.slayer command should be in the following format: \n";
helpString += "chimera.slayer(fasta=yourFastaFile, reference=yourTemplate) \n";
helpString += "Example: chimera.slayer(fasta=AD.align, reference=core_set_aligned.imputed.fasta) \n";
return helpString;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "getHelpString");
exit(1);
}
}
//**********************************************************************************************************************
string ChimeraSlayerCommand::getOutputPattern(string type) {
try {
string pattern = "";
if (type == "chimera") { pattern = "[filename],slayer.chimeras"; }
else if (type == "accnos") { pattern = "[filename],slayer.accnos"; }
else if (type == "fasta") { pattern = "[filename],slayer.fasta"; }
else if (type == "count") { pattern = "[filename],slayer.count_table"; }
else { m->mothurOut("[ERROR]: No definition for type " + type + " output pattern.\n"); m->setControl_pressed(true); }
return pattern;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "getOutputPattern");
exit(1);
}
}
//***************************************************************************************************************
ChimeraSlayerCommand::ChimeraSlayerCommand(string option) : Command() {
try {
hasCount = false;
//allow user to run help
if(option == "help") { help(); abort = true; calledHelp = true; }
else if(option == "citation") { citation(); abort = true; calledHelp = true;}
else if(option == "category") { abort = true; calledHelp = true; }
else {
OptionParser parser(option, setParameters());
map<string,string> parameters = parser.getParameters();
ValidParameters validParameter;
fastafile = validParameter.validFile(parameters, "fasta");
if (fastafile == "not found") {
fastafile = current->getFastaFile();
if (fastafile != "") { m->mothurOut("Using " + fastafile + " as input file for the fasta parameter.\n"); }
else { m->mothurOut("[ERROR]: You have no current fasta file and the fasta parameter is required.\n"); abort = true; }
}
else if (fastafile == "not open") { abort = true; }
else { current->setFastaFile(fastafile); }
bool hasName = false;
string namefile = validParameter.validFile(parameters, "name");
if (namefile == "not open") { namefile = ""; abort = true; }
else if (namefile == "not found") { namefile = ""; }
else { current->setNameFile(namefile); }
if (namefile != "") { hasName = true; }
//check for required parameters
countfile = validParameter.validFile(parameters, "count");
if (countfile == "not open") { countfile = ""; abort = true; }
else if (countfile == "not found") { countfile = ""; }
else { current->setCountFile(countfile); }
if (countfile != "") { hasCount = true; }
//make sure there is at least one valid file left
if (hasName && hasCount) { m->mothurOut("[ERROR]: You must enter ONLY ONE of the following: count or name.\n"); abort = true; }
bool hasGroup = false;
string groupfile = validParameter.validFile(parameters, "group");
if (groupfile == "not open") { abort = true; }
else if (groupfile == "not found") { groupfile = ""; }
else { current->setGroupFile(groupfile); hasGroup = true; }
if (hasGroup && hasCount) { m->mothurOut("[ERROR]: You must enter ONLY ONE of the following: count or group.\n"); abort = true; }
string path;
map<string, string>::iterator it = parameters.find("reference");
//user has given a template file
if(it != parameters.end()){
if (it->second == "self") { templatefile = "self"; }
else {
templatefile = validParameter.validFile(parameters, "reference");
if (templatefile == "not open") { abort = true; }
else if (templatefile == "not found") { //check for saved reference sequences
m->mothurOut("[ERROR]: The reference parameter is a required, aborting.\n"); abort = true;
}
}
}else if ((hasName) || (hasCount)) { templatefile = "self"; }
else { m->mothurOut("[ERROR]: The reference parameter is a required, aborting.\n"); templatefile = ""; abort = true; }
string temp = validParameter.valid(parameters, "ksize"); if (temp == "not found") { temp = "7"; }
util.mothurConvert(temp, ksize);
temp = validParameter.valid(parameters, "window"); if (temp == "not found") { temp = "50"; }
util.mothurConvert(temp, window);
temp = validParameter.valid(parameters, "match"); if (temp == "not found") { temp = "5"; }
util.mothurConvert(temp, match);
temp = validParameter.valid(parameters, "mismatch"); if (temp == "not found") { temp = "-4"; }
util.mothurConvert(temp, mismatch);
temp = validParameter.valid(parameters, "divergence"); if (temp == "not found") { temp = "1.007"; }
util.mothurConvert(temp, divR);
temp = validParameter.valid(parameters, "minsim"); if (temp == "not found") { temp = "90"; }
util.mothurConvert(temp, minSimilarity);
temp = validParameter.valid(parameters, "mincov"); if (temp == "not found") { temp = "70"; }
util.mothurConvert(temp, minCoverage);
temp = validParameter.valid(parameters, "minbs"); if (temp == "not found") { temp = "90"; }
util.mothurConvert(temp, minBS);
temp = validParameter.valid(parameters, "minsnp"); if (temp == "not found") { temp = "10"; }
util.mothurConvert(temp, minSNP);
temp = validParameter.valid(parameters, "parents"); if (temp == "not found") { temp = "3"; }
util.mothurConvert(temp, parents);
temp = validParameter.valid(parameters, "realign"); if (temp == "not found") { temp = "t"; }
realign = util.isTrue(temp);
temp = validParameter.valid(parameters, "trim"); if (temp == "not found") { temp = "f"; }
trim = util.isTrue(temp);
temp = validParameter.valid(parameters, "split"); if (temp == "not found") { temp = "f"; }
trimera = util.isTrue(temp);
temp = validParameter.valid(parameters, "iters"); if (temp == "not found") { temp = "1000"; }
util.mothurConvert(temp, iters);
temp = validParameter.valid(parameters, "increment"); if (temp == "not found") { temp = "5"; }
util.mothurConvert(temp, increment);
temp = validParameter.valid(parameters, "numwanted"); if (temp == "not found") { temp = "15"; }
util.mothurConvert(temp, numwanted);
temp = validParameter.valid(parameters, "dereplicate"); if (temp == "not found") { temp = "false"; }
dups = util.isTrue(temp);
temp = validParameter.valid(parameters, "removechimeras"); if (temp == "not found") { temp = "t"; }
removeChimeras = util.isTrue(temp);
if ((hasName || hasCount) && (templatefile != "self")) { m->mothurOut("You have provided a namefile or countfile and the reference parameter is not set to self. I am not sure what reference you are trying to use, aborting.\n"); abort=true; }
if (hasGroup && (templatefile != "self")) { m->mothurOut("You have provided a group file and the reference parameter is not set to self. I am not sure what reference you are trying to use, aborting.\n"); abort=true; }
if ((namefile != "") || (groupfile != "")) { //convert to count
string rootFileName = namefile;
if (rootFileName == "") { rootFileName = groupfile; }
if (outputdir == "") { outputdir = util.hasPath(rootFileName); }
map<string, string> variables; variables["[filename]"] = outputdir + util.getRootName(util.getSimpleName(rootFileName));
string outputFileName = getOutputFileName("count", variables);
CountTable ct; ct.createTable(namefile, groupfile, nullVector); ct.printCompressedTable(outputFileName);
outputNames.push_back(outputFileName);
current->setCountFile(outputFileName);
countfile = outputFileName;
}
}
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "ChimeraSlayerCommand");
exit(1);
}
}
//***************************************************************************************************************
int ChimeraSlayerCommand::execute(){
try{
if (abort) { if (calledHelp) { return 0; } return 2; }
m->mothurOut("Checking sequences from " + fastafile + " ...\n" );
long start = time(nullptr);
if (outputdir == "") { outputdir = util.hasPath(fastafile); }
map<string, string> variables;
variables["[filename]"] = outputdir + util.getRootName(util.getSimpleName(fastafile));
string outputFileName = getOutputFileName("chimera", variables);
string accnosFileName = getOutputFileName("accnos", variables);
string trimFastaFileName = getOutputFileName("fasta", variables);
string newCountFile = "";
//clears files
ofstream out, out1, out2;
util.openOutputFile(outputFileName, out); out.close();
util.openOutputFile(accnosFileName, out1); out1.close();
if (trim) { util.openOutputFile(trimFastaFileName, out2); out2.close(); }
outputNames.push_back(outputFileName); outputTypes["chimera"].push_back(outputFileName);
outputNames.push_back(accnosFileName); outputTypes["accnos"].push_back(accnosFileName);
if (trim) { outputNames.push_back(trimFastaFileName); outputTypes["fasta"].push_back(trimFastaFileName); }
//maps a filename to priority map.
//if no groupfile this is fastafileNames[s] -> prioirity
//if groupfile then this is each groups seqs -> priority
map<string, map<string, int> > fileToPriority;
map<string, map<string, int> >::iterator itFile;
map<string, string> fileGroup;
fileToPriority[fastafile] = priority; //default
fileGroup[fastafile] = "noGroup";
int totalChimeras = 0;
int numSeqs = 0;
if (templatefile == "self") { setUpForSelfReference(fileGroup, fileToPriority); }
if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } return 0; }
if (fileToPriority.size() == 1) { //you running without a groupfile
itFile = fileToPriority.begin();
string thisFastaName = itFile->first;
map<string, int> thisPriority = itFile->second;
numSeqs = driver(outputFileName, thisFastaName, accnosFileName, trimFastaFileName, thisPriority);
if (m->getControl_pressed()) { outputTypes.clear(); for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } return 0; }
}else { //you have provided a groupfile
if (hasCount) {
variables["[filename]"] = outputdir + util.getRootName(util.getSimpleName(countfile));
newCountFile = getOutputFileName("count", variables);
}
numSeqs = driverGroups(outputFileName, accnosFileName, trimFastaFileName, fileToPriority, fileGroup, newCountFile);
if (hasCount && dups) {
CountTable c; c.readTable(countfile, true, false);
if (!util.isBlank(newCountFile)) {
ifstream in2;
util.openInputFile(newCountFile, in2);
string name, group;
while (!in2.eof()) {
in2 >> name >> group; gobble(in2);
c.setAbund(name, group, 0);
}
in2.close();
}
util.mothurRemove(newCountFile);
c.printTable(newCountFile);
}
if (!dups) {
totalChimeras = deconvoluteResults(outputFileName, accnosFileName, trimFastaFileName);
m->mothurOut("\n" + toString(totalChimeras) + " chimera found.\n");
}else {
if (hasCount) {
unordered_set<string> doNotRemove;
CountTable c; c.readTable(newCountFile, true, true);
//returns non zeroed names
vector<string> namesInTable = c.printTable(newCountFile);
outputNames.push_back(newCountFile); outputTypes["count"].push_back(newCountFile);
for (int i = 0; i < namesInTable.size(); i++) { doNotRemove.insert(namesInTable[i]); }
//remove names we want to keep from accnos file.
unordered_set<string> accnosNames = util.readAccnos(accnosFileName);
ofstream out2; util.openOutputFile(accnosFileName, out2);
for (auto it = accnosNames.begin(); it != accnosNames.end(); it++) {
if (doNotRemove.count(*it) == 0) { out2 << (*it) << endl; }
}
out2.close();
}
}
}
m->mothurOut("It took " + toString(time(nullptr) - start) + " secs to check " + toString(numSeqs) + " sequences.\n");
if (removeChimeras) {
if (!util.isBlank(accnosFileName)) {
m->mothurOut("\nRemoving chimeras from your input files:\n");
string inputString = "fasta=" + fastafile + ", accnos=" + accnosFileName;
if ((countfile != "") && (!dups)) { inputString += ", count=" + countfile; }
m->mothurOut("/******************************************/\n");
m->mothurOut("Running command: remove.seqs(" + inputString + ")\n");
current->setMothurCalling(true);
Command* removeCommand = new RemoveSeqsCommand(inputString);
removeCommand->execute();
map<string, vector<string> > filenames = removeCommand->getOutputFiles();
delete removeCommand;
current->setMothurCalling(false);
m->mothurOut("/******************************************/\n");
if (countfile != "") {
if (!dups) { //dereplicate=f, so remove sequences where any sample found the reads to be chimeric
map<string, string> variables;
variables["[filename]"] = outputdir + util.getRootName(util.getSimpleName(countfile));
string currentName = getOutputFileName("count", variables);
util.renameFile(filenames["count"][0], currentName);
util.mothurRemove(filenames["count"][0]);
outputNames.push_back(currentName); outputTypes["count"].push_back(currentName);
}//else, mothur created a modified count file removing chimeras by sample. No need to include count file on remove.seqs command. Deconvolute function created modified count table already
}
map<string, string> variables;
variables["[filename]"] = outputdir + util.getRootName(util.getSimpleName(fastafile));
string currentName = getOutputFileName("fasta", variables);
util.renameFile(filenames["fasta"][0], currentName);
util.mothurRemove(filenames["fasta"][0]);
outputNames.push_back(currentName); outputTypes["fasta"].push_back(currentName);
}else { m->mothurOut("\nNo chimeras found, skipping remove.seqs.\n"); }
}
//set accnos file as new current accnosfile
string currentName = "";
itTypes = outputTypes.find("accnos");
if (itTypes != outputTypes.end()) { if ((itTypes->second).size() != 0) { currentName = (itTypes->second)[0]; current->setAccnosFile(currentName); } }
itTypes = outputTypes.find("fasta");
if (itTypes != outputTypes.end()) { if ((itTypes->second).size() != 0) { currentName = (itTypes->second)[0]; current->setFastaFile(currentName); } }
itTypes = outputTypes.find("count");
if (itTypes != outputTypes.end()) { if ((itTypes->second).size() != 0) { currentName = (itTypes->second)[0]; current->setCountFile(currentName); } }
m->mothurOut("\nOutput File Names:\n");
for (int i = 0; i < outputNames.size(); i++) { m->mothurOut(outputNames[i]); m->mothurOutEndLine(); }
m->mothurOutEndLine();
return 0;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "execute");
exit(1);
}
}
//**********************************************************************************************************************
int ChimeraSlayerCommand::deconvoluteResults(string outputFileName, string accnosFileName, string trimFileName){
try {
unordered_set<string> chimerasInFile = util.readAccnos(accnosFileName);//this is so if a sequence is found to be chimera in several samples we dont write it to the results file more than once
unordered_set<string>::iterator itChimeras;
unordered_set<string>::iterator itUnique;
int total = 0;
if (trimera) { //add in more potential uniqueNames
unordered_set<string> newUniqueNames = chimerasInFile;
for (itUnique = chimerasInFile.begin(); itUnique != chimerasInFile.end(); itUnique++) {
newUniqueNames.insert(*itUnique+"_LEFT");
newUniqueNames.insert(*itUnique+"_RIGHT");
}
chimerasInFile = newUniqueNames;
}
ofstream out2; util.openOutputFile(accnosFileName, out2);
for (itUnique = chimerasInFile.begin(); itUnique != chimerasInFile.end(); itUnique++) {
out2 << *itUnique << endl; total++;
}
out2.close();
//edit chimera file
ifstream in; util.openInputFile(outputFileName, in);
ofstream out; util.openOutputFile(outputFileName+".temp", out); out.setf(ios::fixed, ios::floatfield); out.setf(ios::showpoint);
string rest, parent1, parent2, line;
set<string> namesInFile; //this is so if a sequence is found to be chimera in several samples we dont write it to the results file more than once
set<string>::iterator itNames;
//assumptions - in file each read will always look like...
/*
F11Fcsw_92754 no
F11Fcsw_63104 F11Fcsw_33372 F11Fcsw_37007 0.89441 80.4469 0.2 1.03727 93.2961 52.2 no 0-241 243-369
*/
//get header line
if (!in.eof()) {
line = util.getline(in); gobble(in);
out << line << endl;
}
//for the chimera file, we want to make sure if any group finds a sequence to be chimeric then all groups do,
//so if this is a report that did not find it to be chimeric, but it appears in the accnos file,
//then ignore this report and continue until we find the report that found it to be chimeric
while (!in.eof()) {
if (m->getControl_pressed()) { in.close(); out.close(); util.mothurRemove((outputFileName+".temp")); return 0; }
string name = "";
in >> name; gobble(in);
in >> parent1; gobble(in);
if (name == "Name") { //name = "Name" because we append the header line each time we add results from the groups
line = util.getline(in); gobble(in);
}else {
if (parent1 == "no") {
//is this sequence really not chimeric??
itChimeras = chimerasInFile.find(name);
if (itChimeras == chimerasInFile.end()) {
//is this sequence not already in the file
itNames = namesInFile.find(name);
if (itNames == namesInFile.end()) { out << name << '\t' << "no" << endl; namesInFile.insert(name); }
}
}else { //read the rest of the line
double DivQLAQRB,PerIDQLAQRB,BootStrapA,DivQLBQRA,PerIDQLBQRA,BootStrapB;
string flag, range1, range2;
bool print = false;
in >> parent2 >> DivQLAQRB >> PerIDQLAQRB >> BootStrapA >> DivQLBQRA >> PerIDQLBQRA >> BootStrapB >> flag >> range1 >> range2; gobble(in);
//is this name already in the file
itNames = namesInFile.find((name));
if (itNames == namesInFile.end()) { //no not in file
if (flag == "no") { //are you really a no??
//is this sequence really not chimeric??
itChimeras = chimerasInFile.find(name);
//then you really are a no so print, otherwise skip
if (itChimeras == chimerasInFile.end()) { print = true; }
}else{ print = true; }
}
if (print) {
namesInFile.insert(name);
out << name << '\t' << parent1 << '\t' << parent1 << '\t' << DivQLAQRB << '\t' << PerIDQLAQRB << '\t' << BootStrapA << '\t' << DivQLBQRA << '\t' << PerIDQLBQRA << '\t' << BootStrapB << '\t' << flag << '\t' << range1 << '\t' << range2 << endl;
}
}
}
}
in.close();
out.close();
util.mothurRemove(outputFileName);
rename((outputFileName+".temp").c_str(), outputFileName.c_str());
//edit fasta file
if (trim) {
ifstream in3; util.openInputFile(trimFileName, in3);
ofstream out3; util.openOutputFile(trimFileName+".temp", out3);
namesInFile.clear();
while (!in3.eof()) {
if (m->getControl_pressed()) { in3.close(); out3.close(); util.mothurRemove(outputFileName); util.mothurRemove(accnosFileName); util.mothurRemove((trimFileName+".temp")); return 0; }
Sequence seq(in3); gobble(in3);
if (seq.getName() != "") {
itNames = namesInFile.find(seq.getName());
if (itNames == namesInFile.end()) { seq.printSequence(out3); }
}
}
in3.close(); out3.close();
util.mothurRemove(trimFileName);
rename((trimFileName+".temp").c_str(), trimFileName.c_str());
}
return total;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "deconvoluteResults");
exit(1);
}
}
//**********************************************************************************************************************
int ChimeraSlayerCommand::setUpForSelfReference(map<string, string>& fileGroup, map<string, map<string, int> >& fileToPriority){
try {
fileGroup.clear();
fileToPriority.clear();
if (!hasCount) { countfile = getCountFile(fastafile); }
string newFastaFile = outputdir + util.getRootName(util.getSimpleName(fastafile)) + "-sortedTemp.fasta";
if (countfile == "") { //no groups
//sort fastafile by abundance, returns new sorted fastafile name
m->mothurOut("Sorting fastafile according to abundance..."); cout.flush();
priority = sortFastaFile(fastafile, countfile, newFastaFile);
m->mothurOut("Done.\n");
fileToPriority[fastafile] = priority;
fileGroup[fastafile] = "noGroup";
}else if (countfile != "") {
CountTable ct;
if (!ct.testGroups(countfile)) {
//sort fastafile by abundance, returns new sorted fastafile name
m->mothurOut("Sorting fastafile according to abundance..."); cout.flush();
priority = sortFastaFile(fastafile, countfile, newFastaFile);
m->mothurOut("Done.\n");
fileToPriority[fastafile] = priority;
fileGroup[fastafile] = "noGroup";
}else { //using count file with groups
//Parse sequences by group
current->setMothurCalling(true);
SequenceCountParser parser(countfile, fastafile, nullVector);
vector<string> groups = parser.getNamesOfGroups();
current->setMothurCalling(false);
for (int i = 0; i < groups.size(); i++) {
vector<string> thisGroupsFiles = parser.getFiles(groups[i]);
string thisGroupsFastaFile = thisGroupsFiles[0];
string thisGroupsCountFile = thisGroupsFiles[1];
newFastaFile = outputdir + util.getRootName(util.getSimpleName(fastafile)) + groups[i] + "-sortedTemp.fasta";
priority = sortFastaFile(thisGroupsFastaFile, thisGroupsCountFile, newFastaFile);
fileToPriority[newFastaFile] = priority;
fileGroup[newFastaFile] = groups[i];
}
}
}
return 0;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "setUpForSelfReference");
exit(1);
}
}
//**********************************************************************************************************************
string ChimeraSlayerCommand::getCountFile(string& inputFile){
try {
string countFile = "";
m->mothurOut("\nNo namesfile given, running unique.seqs command to generate one.\n\n");
//use unique.seqs to create new name and fastafile
string inputString = "format=count, fasta=" + inputFile;
m->mothurOut("/******************************************/\n");
m->mothurOut("Running command: unique.seqs(" + inputString + ")\n");
current->setMothurCalling(true);
Command* uniqueCommand = new UniqueSeqsCommand(inputString);
uniqueCommand->execute();
map<string, vector<string> > filenames = uniqueCommand->getOutputFiles();
delete uniqueCommand;
current->setMothurCalling(false);
m->mothurOut("/******************************************/\n");
countFile = filenames["count"][0];
inputFile = filenames["fasta"][0];
return countFile;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "getCountFile");
exit(1);
}
}
//**********************************************************************************************************************
int ChimeraSlayerCommand::driverGroups(string outputFName, string accnos, string fasta, map<string, map<string, int> >& fileToPriority, map<string, string>& fileGroup, string countlist){
try {
int totalSeqs = 0;
ofstream outCountList;
if (hasCount && dups) { util.openOutputFile(countlist, outCountList); }
for (map<string, map<string, int> >::iterator itFile = fileToPriority.begin(); itFile != fileToPriority.end(); itFile++) {
if (m->getControl_pressed()) { return 0; }
long start = time(nullptr);
string thisFastaName = itFile->first;
map<string, int> thisPriority = itFile->second;
string thisoutputFileName = outputdir + util.getRootName(util.getSimpleName(thisFastaName)) + fileGroup[thisFastaName] + "slayer.chimera";
string thisaccnosFileName = outputdir + util.getRootName(util.getSimpleName(thisFastaName)) + fileGroup[thisFastaName] + "slayer.accnos";
string thistrimFastaFileName = outputdir + util.getRootName(util.getSimpleName(thisFastaName)) + fileGroup[thisFastaName] + "slayer.fasta";
m->mothurOut("\nChecking sequences from group: " + fileGroup[thisFastaName] + ".\n");
lines.clear();
int numSeqs = driver(thisoutputFileName, thisFastaName, thisaccnosFileName, thistrimFastaFileName, thisPriority);
//if we provided a count file with group info and set dereplicate=t, then we want to create a *.pick.count_table
//This table will zero out group counts for seqs determined to be chimeric by that group.
if (dups) {
if (!util.isBlank(thisaccnosFileName)) {
ifstream in; util.openInputFile(thisaccnosFileName, in);
string name;
if (hasCount) {
while (!in.eof()) {
in >> name; gobble(in);
outCountList << name << '\t' << fileGroup[thisFastaName] << endl;
}
in.close();
}else {
map<string, string>::iterator itGroupNameMap = group2NameFile.find(fileGroup[thisFastaName]);
if (itGroupNameMap != group2NameFile.end()) {
map<string, string> thisnamemap; util.readNames(itGroupNameMap->second, thisnamemap);
map<string, string>::iterator itN;
ofstream out;
util.openOutputFile(thisaccnosFileName+".temp", out);
while (!in.eof()) {
in >> name; gobble(in);
itN = thisnamemap.find(name);
if (itN != thisnamemap.end()) {
vector<string> tempNames; util.splitAtComma(itN->second, tempNames);
for (int j = 0; j < tempNames.size(); j++) { out << tempNames[j] << endl; }
}else { m->mothurOut("[ERROR]: parsing cannot find " + name + ".\n"); m->setControl_pressed(true); }
}
out.close();
in.close();
util.renameFile(thisaccnosFileName+".temp", thisaccnosFileName);
}else { m->mothurOut("[ERROR]: parsing cannot find " + fileGroup[thisFastaName] + ".\n"); m->setControl_pressed(true); }
}
}
}
//append files
util.appendFiles(thisoutputFileName, outputFName); util.mothurRemove(thisoutputFileName);
util.appendFiles(thisaccnosFileName, accnos); util.mothurRemove(thisaccnosFileName);
if (trim) { util.appendFiles(thistrimFastaFileName, fasta); util.mothurRemove(thistrimFastaFileName); }
util.mothurRemove(thisFastaName);
totalSeqs += numSeqs;
m->mothurOut("\nIt took " + toString(time(nullptr) - start) + " secs to check " + toString(numSeqs) + " sequences from group " + fileGroup[thisFastaName] + ".\n");
}
if (hasCount && dups) { outCountList.close(); }
return totalSeqs;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "driverGroups");
exit(1);
}
}
//**********************************************************************************************************************
int ChimeraSlayerCommand::driver(string outputFName, string filename, string accnos, string fasta, map<string, int>& priority){
try {
if (m->getDebug()) { m->mothurOut("[DEBUG]: filename = " + filename + "\n"); }
MothurChimera* chimera;
if (templatefile != "self") { //you want to run slayer with a reference template
chimera = new ChimeraSlayer(filename, templatefile, trim, ksize, match, mismatch, window, divR, minSimilarity, minCoverage, minBS, minSNP, parents, iters, increment, numwanted, realign, util.getRandomNumber());
}else {
chimera = new ChimeraSlayer(filename, templatefile, trim, priority, ksize, match, mismatch, window, divR, minSimilarity, minCoverage, minBS, minSNP, parents, iters, increment, numwanted, realign, util.getRandomNumber());
}
if (m->getControl_pressed()) { delete chimera; return 0; }
if (chimera->getUnaligned()) { delete chimera; m->mothurOut("Your template sequences are different lengths, please correct.\n"); m->setControl_pressed(true); return 0; }
templateSeqsLength = chimera->getLength();
ofstream out; util.openOutputFile(outputFName, out);
ofstream out2; util.openOutputFile(accnos, out2);
ofstream out3; if (trim) { util.openOutputFile(fasta, out3); }
ifstream inFASTA; util.openInputFile(filename, inFASTA);
chimera->printHeader(out);
int count = 0;
while (!inFASTA.eof()) {
if (m->getControl_pressed()) { delete chimera; out.close(); out2.close(); if (trim) { out3.close(); } inFASTA.close(); return 1; }
Sequence* candidateSeq = new Sequence(inFASTA); gobble(inFASTA);
string candidateAligned = candidateSeq->getAligned();
if (candidateSeq->getName() != "") { //incase there is a commented sequence at the end of a file
if (candidateSeq->getAligned().length() != templateSeqsLength) {
m->mothurOut("[WARNING]: " + candidateSeq->getName() + " is not the same length as the template sequences. Skipping.\n");
}else{
//find chimeras
chimera->getChimeras(candidateSeq);
if (m->getControl_pressed()) { delete chimera; delete candidateSeq; return 1; }
//if you are not chimeric, then check each half
data_results wholeResults = chimera->getResults();
//determine if we need to split
bool isChimeric = false;
if (wholeResults.flag == "yes") {
string chimeraFlag = "no";
if( (wholeResults.results[0].bsa >= minBS && wholeResults.results[0].divr_qla_qrb >= divR)
||
(wholeResults.results[0].bsb >= minBS && wholeResults.results[0].divr_qlb_qra >= divR) ) { chimeraFlag = "yes"; }
if (chimeraFlag == "yes") {
if ((wholeResults.results[0].bsa >= minBS) || (wholeResults.results[0].bsb >= minBS)) { isChimeric = true; }
}
}
if ((!isChimeric) && trimera) {
//split sequence in half by bases
string leftQuery, rightQuery;
Sequence tempSeq(candidateSeq->getName(), candidateAligned);
divideInHalf(tempSeq, leftQuery, rightQuery);
//run chimeraSlayer on each piece
Sequence* left = new Sequence(candidateSeq->getName(), leftQuery);
Sequence* right = new Sequence(candidateSeq->getName(), rightQuery);
//find chimeras
chimera->getChimeras(left);
data_results leftResults = chimera->getResults();
chimera->getChimeras(right);
data_results rightResults = chimera->getResults();
//if either piece is chimeric then report
Sequence trimmed = chimera->print(out, out2, leftResults, rightResults);
if (trim) { trimmed.printSequence(out3); }
delete left; delete right;
}else { //already chimeric
//print results
Sequence trimmed = chimera->print(out, out2);
if (trim) { trimmed.printSequence(out3); }
}
}
count++;
}
delete candidateSeq;
//report progress
if((count) % 100 == 0){ m->mothurOutJustToScreen("Processing sequence: " + toString(count) + "\n"); }
}
//report progress
if((count) % 100 != 0){ m->mothurOutJustToScreen("Processing sequence: " + toString(count)+ "\n"); }
out.close(); out2.close(); if (trim) { out3.close(); } inFASTA.close();
delete chimera;
return count;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "driver");
exit(1);
}
}
/**************************************************************************************************/
int ChimeraSlayerCommand::divideInHalf(Sequence querySeq, string& leftQuery, string& rightQuery) {
try {
string queryUnAligned = querySeq.getUnaligned();
int numBases = int(queryUnAligned.length() * 0.5);
string queryAligned = querySeq.getAligned();
leftQuery = querySeq.getAligned();
rightQuery = querySeq.getAligned();
int baseCount = 0;
int leftSpot = 0;
for (int i = 0; i < queryAligned.length(); i++) {
//if you are a base
if (isalpha(queryAligned[i])) {
baseCount++;
}
//if you have half
if (baseCount >= numBases) { leftSpot = i; break; } //first half
}
//blank out right side
for (int i = leftSpot; i < leftQuery.length(); i++) { leftQuery[i] = '.'; }
//blank out left side
for (int i = 0; i < leftSpot; i++) { rightQuery[i] = '.'; }
return 0;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "divideInHalf");
exit(1);
}
}
/**************************************************************************************************/
//sort by abundance, no groups provided
map<string, int> ChimeraSlayerCommand::sortFastaFile(string thisfastafile, string thisdupsfile, string newFile) {
try {
map<string, int> nameAbund;
vector<seqPriorityNode> nameVector;
if (hasCount) {
CountTable ct; ct.readTable(thisdupsfile, false, false);
nameAbund = ct.getNameMap();
}
ifstream in; util.openInputFile(thisfastafile, in);
while (!in.eof()) {
if (m->getControl_pressed()) { in.close(); return nameAbund; }
Sequence seq(in); gobble(in);
map<string, int>::iterator itNameMap = nameAbund.find(seq.getName());
if (itNameMap == nameAbund.end()){
m->setControl_pressed(true);
m->mothurOut("[ERROR]: " + seq.getName() + " is in your fastafile, but is not in your countfile, please correct.\n");
}else {
int num = itNameMap->second;
seqPriorityNode temp(num, seq.getAligned(), seq.getName());
nameVector.push_back(temp);
}
}
in.close();
//sort by num represented
sort(nameVector.begin(), nameVector.end(), compareSeqPriorityNodes);
if (m->getControl_pressed()) { return nameAbund; }
ofstream out;
util.openOutputFile(newFile, out);
//print new file in order of
for (int i = 0; i < nameVector.size(); i++) {
out << ">" << nameVector[i].name << endl << nameVector[i].seq << endl;
}
out.close();
return nameAbund;
}
catch(exception& e) {
m->errorOut(e, "ChimeraSlayerCommand", "sortFastaFile");
exit(1);
}
}
/**************************************************************************************************/
|