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 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
|
/*
* chimerauchimecommand.cpp
* Mothur
*
* Created by westcott on 5/13/11.
* Copyright 2011 Schloss Lab. All rights reserved.
*
*/
#include "chimerauchimecommand.h"
#include "uniqueseqscommand.h"
#include "sequence.hpp"
#include "systemcommand.h"
#include "removeseqscommand.h"
//**********************************************************************************************************************
vector<string> ChimeraUchimeCommand::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 pprocessors("processors", "Number", "", "1", "", "", "","",false,false,true); parameters.push_back(pprocessors);
CommandParameter puchimelocation("uchime", "String", "", "", "", "", "","",false,false); parameters.push_back(puchimelocation);
CommandParameter pstrand("strand", "String", "", "", "", "", "","",false,false); parameters.push_back(pstrand);
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);
CommandParameter pabskew("abskew", "Number", "", "1.9", "", "", "","",false,false); parameters.push_back(pabskew);
CommandParameter pchimealns("chimealns", "Boolean", "", "F", "", "", "","alns",false,false); parameters.push_back(pchimealns);
CommandParameter premovechimeras("removechimeras", "Boolean", "", "t", "", "", "","alns",false,false); parameters.push_back(premovechimeras);
CommandParameter pminh("minh", "Number", "", "0.3", "", "", "","",false,false); parameters.push_back(pminh);
CommandParameter pmindiv("mindiv", "Number", "", "0.5", "", "", "","",false,false); parameters.push_back(pmindiv);
CommandParameter pxn("xn", "Number", "", "8.0", "", "", "","",false,false); parameters.push_back(pxn);
CommandParameter pdn("dn", "Number", "", "1.4", "", "", "","",false,false); parameters.push_back(pdn);
CommandParameter pxa("xa", "Number", "", "1", "", "", "","",false,false); parameters.push_back(pxa);
CommandParameter pchunks("chunks", "Number", "", "4", "", "", "","",false,false); parameters.push_back(pchunks);
CommandParameter pminchunk("minchunk", "Number", "", "64", "", "", "","",false,false); parameters.push_back(pminchunk);
CommandParameter pidsmoothwindow("idsmoothwindow", "Number", "", "32", "", "", "","",false,false); parameters.push_back(pidsmoothwindow);
CommandParameter pdups("dereplicate", "Boolean", "", "F", "", "", "","",false,false); parameters.push_back(pdups);
CommandParameter pmaxp("maxp", "Number", "", "2", "", "", "","",false,false); parameters.push_back(pmaxp);
CommandParameter pskipgaps("skipgaps", "Boolean", "", "T", "", "", "","",false,false); parameters.push_back(pskipgaps);
CommandParameter pskipgaps2("skipgaps2", "Boolean", "", "T", "", "", "","",false,false); parameters.push_back(pskipgaps2);
CommandParameter pminlen("minlen", "Number", "", "10", "", "", "","",false,false); parameters.push_back(pminlen);
CommandParameter pmaxlen("maxlen", "Number", "", "10000", "", "", "","",false,false); parameters.push_back(pmaxlen);
CommandParameter pucl("ucl", "Boolean", "", "F", "", "", "","",false,false); parameters.push_back(pucl);
CommandParameter pqueryfract("queryfract", "Number", "", "0.5", "", "", "","",false,false); parameters.push_back(pqueryfract);
abort = false; calledHelp = false;
vector<string> tempOutNames;
outputTypes["chimera"] = tempOutNames;
outputTypes["accnos"] = tempOutNames;
outputTypes["alns"] = tempOutNames;
outputTypes["count"] = tempOutNames;
outputTypes["fasta"] = 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, "ChimeraUchimeCommand", "setParameters");
exit(1);
}
}
//**********************************************************************************************************************
string ChimeraUchimeCommand::getHelpString(){
try {
string helpString = "";
helpString += "The chimera.uchime command reads a fastafile and referencefile and outputs potentially chimeric sequences.\n";
helpString += "This command is a wrapper for uchime written by Robert C. Edgar.\n";
helpString += "The chimera.uchime command parameters are fasta, name, count, reference, processors, dereplicate, removechimeras abskew, chimealns, minh, mindiv, xn, dn, xa, chunks, minchunk, idsmoothwindow, minsmoothid, maxp, skipgaps, skipgaps2, minlen, maxlen, ucl, strand and queryfact.\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 template=self. \n";
helpString += "The count parameter allows you to provide a count file, if you are using template=self. 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 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 += "If the dereplicate parameter is false, then if one group finds the sequence to be chimeric, then all groups find it to be chimeric, default=f.\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 += "The processors parameter allows you to specify how many processors you would like to use. The default is 1. \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 uchime parameter allows you to specify the name and location of your uchime executable. By default mothur will look in your path and mothur's executable and mothur tools locations. You can set the uchime location as follows, uchime=/usr/bin/uchime.\n";
helpString += "The abskew parameter can only be used with template=self. Minimum abundance skew. Default 1.9. Abundance skew is: min [ abund(parent1), abund(parent2) ] / abund(query).\n";
helpString += "The chimealns parameter allows you to indicate you would like a file containing multiple alignments of query sequences to parents in human readable format. Alignments show columns with differences that support or contradict a chimeric model.\n";
helpString += "The minh parameter - mininum score to report chimera. Default 0.3. Values from 0.1 to 5 might be reasonable. Lower values increase sensitivity but may report more false positives. If you decrease xn you may need to increase minh, and vice versa.\n";
helpString += "The mindiv parameter - minimum divergence ratio, default 0.5. Div ratio is 100%% - %%identity between query sequence and the closest candidate for being a parent. If you don't care about very close chimeras, then you could increase mindiv to, say, 1.0 or 2.0, and also decrease minh, say to 0.1, to increase sensitivity. How well this works will depend on your data. Best is to tune parameters on a good benchmark.\n";
helpString += "The xn parameter - weight of a no vote. Default 8.0. Decreasing this weight to around 3 or 4 may give better performance on denoised data.\n";
helpString += "The dn parameter - pseudo-count prior on number of no votes. Default 1.4. Probably no good reason to change this unless you can retune to a good benchmark for your data. Reasonable values are probably in the range from 0.2 to 2.\n";
helpString += "The xa parameter - weight of an abstain vote. Default 1. So far, results do not seem to be very sensitive to this parameter, but if you have a good training set might be worth trying. Reasonable values might range from 0.1 to 2.\n";
helpString += "The chunks parameter is the number of chunks to extract from the query sequence when searching for parents. Default 4.\n";
helpString += "The minchunk parameter is the minimum length of a chunk. Default 64.\n";
helpString += "The idsmoothwindow parameter is the length of id smoothing window. Default 32.\n";
//helpString += "The minsmoothid parameter - minimum factional identity over smoothed window of candidate parent. Default 0.95.\n";
helpString += "The maxp parameter - maximum number of candidate parents to consider. Default 2. In tests so far, increasing maxp gives only a very small improvement in sensivity but tends to increase the error rate quite a bit.\n";
helpString += "The skipgaps parameter controls how gapped columns affect counting of diffs. If skipgaps is set to T, columns containing gaps do not found as diffs. Default = T.\n";
helpString += "The skipgaps2 parameter controls how gapped columns affect counting of diffs. If skipgaps2 is set to T, if column is immediately adjacent to a column containing a gap, it is not counted as a diff. Default = T.\n";
helpString += "The minlen parameter is the minimum unaligned sequence length. Defaults 10. Applies to both query and reference sequences.\n";
helpString += "The maxlen parameter is the maximum unaligned sequence length. Defaults 10000. Applies to both query and reference sequences.\n";
helpString += "The ucl parameter - use local-X alignments. Default is global-X or false. On tests so far, global-X is always better; this option is retained because it just might work well on some future type of data.\n";
helpString += "The queryfract parameter - minimum fraction of the query sequence that must be covered by a local-X alignment. Default 0.5. Applies only when ucl is true.\n";
helpString += "The chimera.uchime command should be in the following format: \n";
helpString += "chimera.uchime(fasta=yourFastaFile, reference=yourTemplate) \n";
helpString += "Example: chimera.uchime(fasta=AD.align, reference=silva.gold.align) \n";
return helpString;
}
catch(exception& e) {
m->errorOut(e, "ChimeraUchimeCommand", "getHelpString");
exit(1);
}
}
//**********************************************************************************************************************
string ChimeraUchimeCommand::getCommonQuestions(){
try {
vector<string> questions, issues, qanswers, ianswers, howtos, hanswers;
string issue = "... uchime file does not exist. mothur requires the uchime executable."; issues.push_back(issue);
string ianswer = "\tThe chimera.uchime command is a wrapper for the uchime program, http://drive5.com/usearch/manual/uchime_algo.html. We distribute the uchime executable with the executable versions of mothur. By default, mothur will look for uchime in the same location mothur's executable is as well as looking in your $PATH variable.\n"; ianswers.push_back(ianswer);
string howto = "How do I use the dereplicate parameter?"; howtos.push_back(howto);
string hanswer = "\tThe dereplicate parameter can be used when checking for chimeras by group. If the dereplicate parameter is false, then if one group finds the sequence to be chimeric, then all groups find it to be chimeric, default=f. If you set dereplicate=t, and then when a sequence is found to be chimeric it is removed from it’s group, not the entire dataset.\n\nNote: When you set dereplicate=t, mothur generates a new count table with the chimeras removed and counts adjusted by sample. It is important to note if you set dereplicate=true, do NOT include the count file with the remove.seqs command. For a detailed example, please reference https://mothur.org/wiki/chimera_dereplicate_example/\n"; hanswers.push_back(hanswer);
string commonQuestions = util.getFormattedHelp(questions, qanswers, issues, ianswers, howtos, hanswers);
return commonQuestions;
}
catch(exception& e) {
m->errorOut(e, "ChimeraUchimeCommand", "getCommonQuestions");
exit(1);
}
}
//**********************************************************************************************************************
string ChimeraUchimeCommand::getOutputPattern(string type) {
try {
string pattern = "";
if (type == "chimera") { pattern = "[filename],[tag],uchime.chimeras"; }
else if (type == "accnos") { pattern = "[filename],[tag],uchime.accnos"; }
else if (type == "alns") { pattern = "[filename],[tag],uchime.alns"; }
else if (type == "fasta") { pattern = "[filename],[tag],uchime.fasta"; }
else if (type == "count") { pattern = "[filename],[tag],uchime.count_table-[filename],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, "ChimeraUchimeCommand", "getOutputPattern");
exit(1);
}
}
//***************************************************************************************************************
ChimeraUchimeCommand::ChimeraUchimeCommand(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; }
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) || (hasGroup)) { templatefile = "self"; }
else { m->mothurOut("[ERROR]: The reference parameter is a required, aborting.\n"); templatefile = ""; abort = true; }
string temp = validParameter.valid(parameters, "processors"); if (temp == "not found"){ temp = current->getProcessors(); }
processors = current->setProcessors(temp);
abskew = validParameter.valid(parameters, "abskew"); if (abskew == "not found"){ useAbskew = false; abskew = "1.9"; }else{ useAbskew = true; }
if (useAbskew && templatefile != "self") { m->mothurOut("The abskew parameter is only valid with template=self, ignoring.\n"); useAbskew = false; }
temp = validParameter.valid(parameters, "chimealns"); if (temp == "not found") { temp = "f"; }
chimealns = util.isTrue(temp);
minh = validParameter.valid(parameters, "minh"); if (minh == "not found") { useMinH = false; minh = "0.3"; } else{ useMinH = true; }
mindiv = validParameter.valid(parameters, "mindiv"); if (mindiv == "not found") { useMindiv = false; mindiv = "0.5"; } else{ useMindiv = true; }
xn = validParameter.valid(parameters, "xn"); if (xn == "not found") { useXn = false; xn = "8.0"; } else{ useXn = true; }
dn = validParameter.valid(parameters, "dn"); if (dn == "not found") { useDn = false; dn = "1.4"; } else{ useDn = true; }
xa = validParameter.valid(parameters, "xa"); if (xa == "not found") { useXa = false; xa = "1"; } else{ useXa = true; }
chunks = validParameter.valid(parameters, "chunks"); if (chunks == "not found") { useChunks = false; chunks = "4"; } else{ useChunks = true; }
minchunk = validParameter.valid(parameters, "minchunk"); if (minchunk == "not found") { useMinchunk = false; minchunk = "64"; } else{ useMinchunk = true; }
idsmoothwindow = validParameter.valid(parameters, "idsmoothwindow"); if (idsmoothwindow == "not found") { useIdsmoothwindow = false; idsmoothwindow = "32"; } else{ useIdsmoothwindow = true; }
maxp = validParameter.valid(parameters, "maxp"); if (maxp == "not found") { useMaxp = false; maxp = "2"; } else{ useMaxp = true; }
minlen = validParameter.valid(parameters, "minlen"); if (minlen == "not found") { useMinlen = false; minlen = "10"; } else{ useMinlen = true; }
maxlen = validParameter.valid(parameters, "maxlen"); if (maxlen == "not found") { useMaxlen = false; maxlen = "10000"; } else{ useMaxlen = true; }
strand = validParameter.valid(parameters, "strand"); if (strand == "not found") { strand = ""; }
temp = validParameter.valid(parameters, "ucl"); if (temp == "not found") { temp = "f"; }
ucl = util.isTrue(temp);
queryfract = validParameter.valid(parameters, "queryfract"); if (queryfract == "not found") { useQueryfract = false; queryfract = "0.5"; } else{ useQueryfract = true; }
if (!ucl && useQueryfract) { m->mothurOut("queryfact may only be used when ucl=t, ignoring.\n"); useQueryfract = false; }
temp = validParameter.valid(parameters, "skipgaps"); if (temp == "not found") { temp = "t"; }
skipgaps = util.isTrue(temp);
temp = validParameter.valid(parameters, "skipgaps2"); if (temp == "not found") { temp = "t"; }
skipgaps2 = util.isTrue(temp);
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 && (templatefile != "self")) { m->mothurOut("You have provided a namefile 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 (hasCount && (templatefile != "self")) { m->mothurOut("You have provided a 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; }
vector<string> versionOutputs;
bool foundTool = false;
string programName = "uchime"; programName += EXECUTABLE_EXT;
uchimeLocation = validParameter.validFile(parameters, "uchime");
if (uchimeLocation == "not found") {
uchimeLocation = "";
foundTool = util.findTool(programName, uchimeLocation, versionOutputs, current->getLocations());
}
else {
//test to make sure uchime exists
ifstream in;
uchimeLocation = util.getFullPathName(uchimeLocation);
foundTool = util.openInputFile(uchimeLocation, in, "no error"); in.close();
if(!foundTool) {
m->mothurOut(uchimeLocation + " file does not exist or cannot be opened, ignoring.\n"); uchimeLocation = "";
foundTool = util.findTool(programName, uchimeLocation, versionOutputs, current->getLocations());
}
}
if (!foundTool) { abort = true; }
uchimeLocation = util.getFullPathName(uchimeLocation);
if (m->getDebug()) { m->mothurOut("[DEBUG]: uchime location using " + uchimeLocation + "\n"); }
if (!abort) {
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; hasCount = true;
}
}
}
}
catch(exception& e) {
m->errorOut(e, "ChimeraUchimeCommand", "ChimeraUchimeCommand");
exit(1);
}
}
/**************************************************************************************************/
struct uchimeData {
string fastafile;
string dupsfile;
string outputFName;
string accnos, alns, formattedFastaFilename, templatefile, uchimeLocation;
string driverAccnos, driverAlns, driverOutputFName;
map<string, vector<string> > parsedFiles;
map<string, vector<string> > seqs2RemoveByGroup;
int count, numChimeras;
vector<string> groups;
uchimeVariables* vars;
MothurOut* m;
Utils util;
uchimeData(){}
uchimeData(map<string, vector<string> > g2f, string o, string uloc, string t, string file, string f, string n, string ac, string al, vector<string> gr, uchimeVariables* vs) {
fastafile = f;
dupsfile = n;
formattedFastaFilename = file;
outputFName = o;
templatefile = t;
accnos = ac;
alns = al;
m = MothurOut::getInstance();
groups = gr;
count = 0;
numChimeras = 0;
uchimeLocation = uloc;
vars = vs;
driverAccnos = ac;
driverAlns = al;
driverOutputFName = o;
parsedFiles = g2f;
}
void setDriverNames(string o, string al, string ac) {
driverAccnos = ac;
driverAlns = al;
driverOutputFName = o;
}
};
//**********************************************************************************************************************
int driver(uchimeData* params){
try {
params->driverOutputFName = params->util.getFullPathName(params->driverOutputFName);
params->formattedFastaFilename = params->util.getFullPathName(params->formattedFastaFilename);
params->driverAlns = params->util.getFullPathName(params->driverAlns);
//to allow for spaces in the path
params->driverOutputFName = "\"" + params->driverOutputFName + "\"";
params->formattedFastaFilename = "\"" + params->formattedFastaFilename + "\"";
params->driverAlns = "\"" + params->driverAlns + "\"";
if (params->formattedFastaFilename.length() > 257) {
params->m->mothurOut("[ERROR]: " + params->formattedFastaFilename + " filename is " + toString(params->formattedFastaFilename.length()) + " long. The uchime program can't handle files with a full path longer than 257 characters, please correct.\n"); params->m->setControl_pressed(true); return 0;
}else if ((params->driverAlns.length() > 257) && (params->vars->chimealns)) {
params->m->mothurOut("[ERROR]: " + params->driverAlns + " filename is " + toString(params->driverAlns.length()) + " long. The uchime program can't handle files with a full path longer than 257 characters, please correct.\n"); params->m->setControl_pressed(true); return 0;
}else if (params->driverOutputFName.length() > 257) {
params->m->mothurOut("[ERROR]: " + params->driverOutputFName + " filename is " + toString(params->driverOutputFName.length()) + " long. The uchime program can't handle files with a full path longer than 257 characters, please correct input file name.\n"); params->m->setControl_pressed(true); return 0;
}
vector<char*> cPara;
string uchimeCommand = params->uchimeLocation;
uchimeCommand = "\"" + uchimeCommand + "\" ";
cPara.push_back(params->util.mothurConvert(uchimeCommand));
//are you using a reference file
if (params->templatefile != "self") {
string outputFileName = params->formattedFastaFilename.substr(1, params->formattedFastaFilename.length()-2) + ".uchime_formatted";
ifstream in; params->util.openInputFile(params->formattedFastaFilename.substr(1, params->formattedFastaFilename.length()-2), in);
ofstream out; params->util.openOutputFile(outputFileName, out);
while (!in.eof()) {
if (params->m->getControl_pressed()) { break; }
Sequence seq(in); gobble(in);
if (seq.getName() != "") { seq.printSequence(out); }
}
in.close(); out.close();
params->formattedFastaFilename = outputFileName;
params->formattedFastaFilename = "\"" + params->formattedFastaFilename + "\"";
cPara.push_back(params->util.mothurConvert("--db"));
cPara.push_back(params->util.mothurConvert(params->templatefile));
}
//input filename
cPara.push_back(params->util.mothurConvert("--input"));
cPara.push_back(params->util.mothurConvert(params->formattedFastaFilename));
//output filename
cPara.push_back(params->util.mothurConvert("--uchimeout"));
cPara.push_back(params->util.mothurConvert(params->driverOutputFName));
if (params->vars->chimealns) {
//output alns filename
cPara.push_back(params->util.mothurConvert("--uchimealns"));
cPara.push_back(params->util.mothurConvert(params->driverAlns));
}
//strand
if (params->vars->strand != "") {
cPara.push_back(params->util.mothurConvert("--strand"));
cPara.push_back(params->util.mothurConvert(params->vars->strand));
}
if (params->vars->useAbskew) {
cPara.push_back(params->util.mothurConvert("--abskew"));
cPara.push_back(params->util.mothurConvert(params->vars->abskew));
}
if (params->vars->useMinH) {
cPara.push_back(params->util.mothurConvert("--minh"));
cPara.push_back(params->util.mothurConvert(params->vars->minh));
}
if (params->vars->useMindiv) {
cPara.push_back(params->util.mothurConvert("--mindiv"));
cPara.push_back(params->util.mothurConvert(params->vars->mindiv));
}
if (params->vars->useXn) {
cPara.push_back(params->util.mothurConvert("--xn"));
cPara.push_back(params->util.mothurConvert(params->vars->xn));
}
if (params->vars->useDn) {
cPara.push_back(params->util.mothurConvert("--dn"));
cPara.push_back(params->util.mothurConvert(params->vars->dn));
}
if (params->vars->useXa) {
cPara.push_back(params->util.mothurConvert("--xa"));
cPara.push_back(params->util.mothurConvert(params->vars->xa));
}
if (params->vars->useChunks) {
cPara.push_back(params->util.mothurConvert("--chunks"));
cPara.push_back(params->util.mothurConvert(params->vars->chunks));
}
if (params->vars->useMinchunk) {
cPara.push_back(params->util.mothurConvert("--minchunk"));
cPara.push_back(params->util.mothurConvert(params->vars->minchunk));
}
if (params->vars->useIdsmoothwindow) {
cPara.push_back(params->util.mothurConvert("--idsmoothwindow"));
cPara.push_back(params->util.mothurConvert(params->vars->idsmoothwindow));
}
if (params->vars->useMaxp) {
cPara.push_back(params->util.mothurConvert("--maxp"));
cPara.push_back(params->util.mothurConvert(params->vars->maxp));
}
if (!params->vars->skipgaps) {
cPara.push_back(params->util.mothurConvert("--noskipgaps"));
}
if (!params->vars->skipgaps2) {
cPara.push_back(params->util.mothurConvert("--noskipgaps2"));
}
if (params->vars->useMinlen) {
cPara.push_back(params->util.mothurConvert("--minlen"));
cPara.push_back(params->util.mothurConvert(params->vars->minlen));
}
if (params->vars->useMaxlen) {
cPara.push_back(params->util.mothurConvert("--maxlen"));
cPara.push_back(params->util.mothurConvert(params->vars->maxlen));
}
if (params->vars->ucl) {
cPara.push_back(params->util.mothurConvert("--ucl"));
}
if (params->vars->useQueryfract) {
cPara.push_back(params->util.mothurConvert("--queryfract"));
cPara.push_back(params->util.mothurConvert(params->vars->queryfract));
}
char** uchimeParameters;
uchimeParameters = new char*[cPara.size()];
string commandString = "";
for (int i = 0; i < cPara.size(); i++) { uchimeParameters[i] = cPara[i]; commandString += toString(cPara[i]) + " "; }
//int numArgs = cPara.size();
//uchime_main(numArgs, uchimeParameters);
#if defined NON_WINDOWS
#else
commandString = "\"" + commandString + "\"";
#endif
if (params->m->getDebug()) { params->m->mothurOut("[DEBUG]: uchime command = " + commandString + ".\n"); }
system(commandString.c_str());
//free memory
for(int i = 0; i < cPara.size(); i++) { delete cPara[i]; }
delete[] uchimeParameters;
//remove "" from filenames
params->driverOutputFName = params->driverOutputFName.substr(1, params->driverOutputFName.length()-2);
params->formattedFastaFilename = params->formattedFastaFilename.substr(1, params->formattedFastaFilename.length()-2);
params->driverAlns = params->driverAlns.substr(1, params->driverAlns.length()-2);
if (params->m->getControl_pressed()) { return 0; }
//create accnos file from uchime results
ifstream in; params->util.openInputFile(params->driverOutputFName, in);
ofstream out; params->util.openOutputFile(params->driverAccnos, out);
int num = 0;
params->numChimeras = 0;
while(!in.eof()) {
if (params->m->getControl_pressed()) { break; }
string name = ""; string chimeraFlag = "";
string line = params->util.getline(in); gobble(in);
vector<string> pieces = params->util.splitWhiteSpace(line);
if (pieces.size() > 2) {
name = pieces[1];
//fix name if needed
if (params->templatefile == "self") {
name = name.substr(0, name.length()-1); //rip off last /
name = name.substr(0, name.find_last_of('/'));
}
chimeraFlag = pieces[pieces.size()-1];
}
if (chimeraFlag == "Y") { out << name << endl; params->numChimeras++; }
num++;
}
in.close();
out.close();
return num;
}
catch(exception& e) {
params->m->errorOut(e, "ChimeraUchimeCommand", "driver");
exit(1);
}
}
//***************************************************************************************************************
int ChimeraUchimeCommand::execute(){
try{
if (abort) { if (calledHelp) { return 0; } return 2; }
m->mothurOut("\nuchime by Robert C. Edgar\nhttp://drive5.com/uchime\nThis code is donated to the public domain.\n\n");
vars = new uchimeVariables();
vars->setBooleans(dups, useAbskew, chimealns, useMinH, useMindiv, useXn, useDn, useXa, useChunks, useMinchunk, useIdsmoothwindow, useMinsmoothid, useMaxp, skipgaps, skipgaps2, useMinlen, useMaxlen, ucl, useQueryfract, hasCount);
vars->setVariables(abskew, minh, mindiv, xn, dn, xa, chunks, minchunk, idsmoothwindow, minsmoothid, maxp, minlen, maxlen, queryfract, strand);
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));
variables["[tag]"] = "denovo";
if (templatefile != "self") { variables["[tag]"] = "ref"; }
string outputFileName = getOutputFileName("chimera", variables);
string accnosFileName = getOutputFileName("accnos", variables);
string alnsFileName = getOutputFileName("alns", variables);
string newFasta = util.getRootName(fastafile) + "temp";
string newCountFile = "";
//you provided a groupfile
bool hasGroups = false;
vector<string> groups;
if (hasCount) {
CountTable ct;
if (ct.testGroups(countfile, groups)) { hasGroups = true; }
variables["[filename]"] = outputdir + util.getRootName(util.getSimpleName(countfile));
newCountFile = getOutputFileName("count", variables);
}
if ((templatefile == "self") && (!hasGroups)) { //you want to run uchime with a template=self and no groups
if (processors != 1) { m->mothurOut("When using template=self, mothur can only use 1 processor, continuing.\n"); processors = 1; }
if (hasCount) { }
else { countfile = getCountFile(fastafile); hasCount = true; }
map<string, string> seqs;
readFasta(fastafile, seqs); if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } return 0; }
//read namefile
vector<seqPriorityNode> nameMapCount;
int error = 0;
if (hasCount) {
CountTable ct;
ct.readTable(countfile, true, false);
for(map<string, string>::iterator it = seqs.begin(); it != seqs.end(); it++) {
int num = ct.getNumSeqs(it->first);
if (num == 0) {
error = 1;
}
else {
seqPriorityNode temp(num, it->second, it->first);
nameMapCount.push_back(temp);
}
}
}
if (error == 1) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } return 0; }
if (seqs.size() != nameMapCount.size()) { m->mothurOut( "The number of sequences in your fastafile does not match the number of sequences in your countfile, aborting.\n"); for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } return 0; }
util.printVsearchFile(nameMapCount, newFasta, "/ab=", "/");
fastafile = newFasta;
}
if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } delete vars; return 0; }
if (hasGroups) {
if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } delete vars; return 0; }
vector<string> groups;
map<string, vector<string> > group2Files;
if (hasCount) {
current->setMothurCalling(true);
SequenceCountParser cparser(countfile, fastafile, nullVector);
current->setMothurCalling(false);
groups = cparser.getNamesOfGroups();
group2Files = cparser.getFiles();
}
//clears files
ofstream out, out1, out2;
util.openOutputFile(outputFileName, out); out.close();
util.openOutputFile(accnosFileName, out1); out1.close();
if (chimealns) { util.openOutputFile(alnsFileName, out2); out2.close(); }
map<string, vector<string> > seqs2RemoveByGroup;
int totalSeqs = createProcessesGroups(group2Files, outputFileName, newFasta, accnosFileName, alnsFileName, groups, seqs2RemoveByGroup);
if (hasCount && dups) {
CountTable newCount; newCount.readTable(countfile, true, false);
for (map<string, vector<string> >::iterator it = seqs2RemoveByGroup.begin(); it != seqs2RemoveByGroup.end(); it++) {
string group = it->first;
for (int k = 0; k < it->second.size(); k++) { newCount.setAbund(it->second[k], group, 0); }
}
newCount.printTable(newCountFile);
}
if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } delete vars; return 0; }
if (!dups) {
int totalChimeras = deconvoluteResults(outputFileName, accnosFileName, alnsFileName);
m->mothurOut("\nIt took " + toString(time(nullptr) - start) + " secs to check " + toString(totalSeqs) + " sequences. " + toString(totalChimeras) + " chimeras were found.\n");
m->mothurOut("The number of sequences checked may be larger than the number of unique sequences because some sequences are found in several samples.\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();
}
}
if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } delete vars; return 0; }
}else{
if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } delete vars; return 0; }
int numSeqs = 0;
int numChimeras = 0;
map<string, vector<string> > dummy;
uchimeData* dataBundle = new uchimeData(dummy, outputFileName, uchimeLocation, templatefile, fastafile, fastafile, countfile, accnosFileName, alnsFileName, nullVector, vars);
numSeqs = driver(dataBundle);
numChimeras = dataBundle->numChimeras;
delete dataBundle;
//add headings
ofstream out;
util.openOutputFile(outputFileName+".temp", out);
out << "Score\tQuery\tParentA\tParentB\tIdQM\tIdQA\tIdQB\tIdAB\tIdQT\tLY\tLN\tLA\tRY\tRN\tRA\tDiv\tYN\n";
out.close();
util.appendFiles(outputFileName, outputFileName+".temp");
util.mothurRemove(outputFileName); rename((outputFileName+".temp").c_str(), outputFileName.c_str());
if (m->getControl_pressed()) { for (int j = 0; j < outputNames.size(); j++) { util.mothurRemove(outputNames[j]); } delete vars; return 0; }
//remove file made for uchime
if (templatefile == "self") { util.mothurRemove(fastafile); }
m->mothurOut("\nIt took " + toString(time(nullptr) - start) + " secs to check " + toString(numSeqs) + " sequences. " + toString(numChimeras) + " chimeras were found.\n");
}
outputNames.push_back(outputFileName); outputTypes["chimera"].push_back(outputFileName);
outputNames.push_back(accnosFileName); outputTypes["accnos"].push_back(accnosFileName);
if (chimealns) { outputNames.push_back(alnsFileName); outputTypes["alns"].push_back(alnsFileName); }
delete vars;
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));
variables["[tag]"] = "denovo";
if (templatefile != "self") { variables["[tag]"] = "ref"; }
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));
variables["[tag]"] = "denovo";
if (templatefile != "self") { variables["[tag]"] = "ref"; }
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("count");
if (itTypes != outputTypes.end()) {
if ((itTypes->second).size() != 0) { currentName = (itTypes->second)[0]; current->setCountFile(currentName); }
}
itTypes = outputTypes.find("fasta");
if (itTypes != outputTypes.end()) {
if ((itTypes->second).size() != 0) { currentName = (itTypes->second)[0]; current->setFastaFile(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, "ChimeraUchimeCommand", "execute");
exit(1);
}
}
//**********************************************************************************************************************
int ChimeraUchimeCommand::deconvoluteResults(string outputFileName, string accnosFileName, string alnsFileName){
try {
int total = 0;
ofstream out2;
util.openOutputFile(accnosFileName+".temp", out2);
string name;
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;
set<string> chimerasInFile;
set<string>::iterator itChimeras;
if (!util.isBlank(accnosFileName)) {
//edit accnos file
ifstream in2;
util.openInputFile(accnosFileName, in2);
while (!in2.eof()) {
if (m->getControl_pressed()) { in2.close(); out2.close(); util.mothurRemove(outputFileName); util.mothurRemove((accnosFileName+".temp")); return 0; }
in2 >> name; gobble(in2);
itChimeras = chimerasInFile.find(name);
if (itChimeras == chimerasInFile.end()) {
out2 << name << endl;
chimerasInFile.insert(name);
total++;
}
}
in2.close();
}
out2.close();
util.mothurRemove(accnosFileName);
rename((accnosFileName+".temp").c_str(), accnosFileName.c_str());
//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);
out << "Score\tQuery\tParentA\tParentB\tIdQM\tIdQA\tIdQB\tIdAB\tIdQT\tLY\tLN\tLA\tRY\tRN\tRA\tDiv\tYN\n";
float temp1;
string parent1, parent2, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9, temp10, temp11, temp12, temp13, flag;
name = "";
namesInFile.clear();
//assumptions - in file each read will always look like - if uchime source is updated, revisit this code.
/* 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
0.000000 F11Fcsw_33372/ab=18/ * * * * * * * * * * * * * * N
0.018300 F11Fcsw_14980/ab=16/ F11Fcsw_1915/ab=35/ F11Fcsw_6032/ab=42/ 79.9 78.7 78.2 78.7 79.2 3 0 5 11 10 20 1.46 N
*/
while (!in.eof()) {
if (m->getControl_pressed()) { in.close(); out.close(); util.mothurRemove((outputFileName+".temp")); return 0; }
bool print = false;
in >> temp1; gobble(in);
in >> name; gobble(in);
in >> parent1; gobble(in);
in >> parent2; gobble(in);
in >> temp2 >> temp3 >> temp4 >> temp5 >> temp6 >> temp7 >> temp8 >> temp9 >> temp10 >> temp11 >> temp12 >> temp13 >> flag;
gobble(in);
//parse name - name will look like U68590/ab=1/
string restOfName = "";
int pos = name.find_first_of('/');
if (pos != string::npos) {
restOfName = name.substr(pos);
name = name.substr(0, pos);
}
//is this name already in the file
itNames = namesInFile.find((name));
if (itNames == namesInFile.end()) { //no not in file
if (flag == "N") { //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) {
out << temp1 << '\t' << name << restOfName << '\t';
namesInFile.insert(name);
//parse parent1 names
if (parent1 != "*") {
restOfName = "";
pos = parent1.find_first_of('/');
if (pos != string::npos) {
restOfName = parent1.substr(pos);
parent1 = parent1.substr(0, pos);
}
out << parent1 << restOfName << '\t';
}else { out << parent1 << '\t'; }
//parse parent2 names
if (parent2 != "*") {
restOfName = "";
pos = parent2.find_first_of('/');
if (pos != string::npos) {
restOfName = parent2.substr(pos);
parent2 = parent2.substr(0, pos);
}
out << parent2 << restOfName << '\t';
}else { out << parent2 << '\t'; }
out << temp2 << '\t' << temp3 << '\t' << temp4 << '\t' << temp5 << '\t' << temp6 << '\t' << temp7 << '\t' << temp8 << '\t' << temp9 << '\t' << temp10 << '\t' << temp11 << '\t' << temp12 << '\t' << temp13 << '\t' << flag << endl;
}
}
in.close();
out.close();
util.mothurRemove(outputFileName);
rename((outputFileName+".temp").c_str(), outputFileName.c_str());
//edit anls file
//assumptions - in file each read will always look like - if uchime source is updated, revisit this code.
/*
------------------------------------------------------------------------
Query ( 179 nt) F21Fcsw_11639/ab=591/
ParentA ( 179 nt) F11Fcsw_6529/ab=1625/
ParentB ( 181 nt) F21Fcsw_12128/ab=1827/
A 1 AAGgAAGAtTAATACaagATGgCaTCatgAGtccgCATgTtcAcatGATTAAAG--gTaTtcCGGTagacGATGGGGATG 78
Q 1 AAGTAAGACTAATACCCAATGACGTCTCTAGAAGACATCTGAAAGAGATTAAAG--ATTTATCGGTGATGGATGGGGATG 78
B 1 AAGgAAGAtTAATcCaggATGggaTCatgAGttcACATgTccgcatGATTAAAGgtATTTtcCGGTagacGATGGGGATG 80
Diffs N N A N?N N N NNN N?NB N ?NaNNN B B NN NNNN
Votes 0 0 + 000 0 0 000 000+ 0 00!000 + 00 0000
Model AAAAAAAAAAAAAAAAAAAAAAxBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
A 79 CGTtccATTAGaTaGTaGGCGGGGTAACGGCCCACCtAGtCttCGATggaTAGGGGTTCTGAGAGGAAGGTCCCCCACAT 158
Q 79 CGTCTGATTAGCTTGTTGGCGGGGTAACGGCCCACCAAGGCAACGATCAGTAGGGGTTCTGAGAGGAAGGTCCCCCACAT 158
B 81 CGTtccATTAGaTaGTaGGCGGGGTAACGGCCCACCtAGtCAACGATggaTAGGGGTTCTGAGAGGAAGGTCCCCCACAT 160
Diffs NNN N N N N N BB NNN
Votes 000 0 0 0 0 0 ++ 000
Model BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
A 159 TGGAACTGAGACACGGTCCAA 179
Q 159 TGGAACTGAGACACGGTCCAA 179
B 161 TGGAACTGAGACACGGTCCAA 181
Diffs
Votes
Model BBBBBBBBBBBBBBBBBBBBB
Ids. QA 76.6%, QB 77.7%, AB 93.7%, QModel 78.9%, Div. +1.5%
Diffs Left 7: N 0, A 6, Y 1 (14.3%); Right 35: N 1, A 30, Y 4 (11.4%), Score 0.0047
*/
if (chimealns) {
ifstream in3;
util.openInputFile(alnsFileName, in3);
ofstream out3;
util.openOutputFile(alnsFileName+".temp", out3); out3.setf(ios::fixed, ios::floatfield); out3.setf(ios::showpoint);
name = "";
namesInFile.clear();
string line = "";
while (!in3.eof()) {
if (m->getControl_pressed()) { in3.close(); out3.close(); util.mothurRemove(outputFileName); util.mothurRemove((accnosFileName)); util.mothurRemove((alnsFileName+".temp")); return 0; }
line = "";
line = util.getline(in3);
string temp = "";
if (line != "") {
istringstream iss(line);
iss >> temp;
//are you a name line
if ((temp == "Query") || (temp == "ParentA") || (temp == "ParentB")) {
int spot = 0;
for (int i = 0; i < line.length(); i++) {
spot = i;
if (line[i] == ')') { break; }
else { out3 << line[i]; }
}
if (spot == (line.length() - 1)) { m->mothurOut("[ERROR]: could not line sequence name in line " + line + ".\n"); m->setControl_pressed(true); }
else if ((spot+2) > (line.length() - 1)) { m->mothurOut("[ERROR]: could not line sequence name in line " + line + ".\n"); m->setControl_pressed(true); }
else {
out << line[spot] << line[spot+1];
name = line.substr(spot+2);
//parse name - name will either look like U68590/ab=1/ or U68590
string restOfName = "";
int pos = name.find_first_of('/');
if (pos != string::npos) {
restOfName = name.substr(pos);
name = name.substr(0, pos);
}
//only limit repeats on query names
if (temp == "Query") {
itNames = namesInFile.find(name);
if (itNames == namesInFile.end()) {
out << name << restOfName << endl;
namesInFile.insert(name);
}
}else { out << name << restOfName << endl; }
}
}else { //not need to alter line
out3 << line << endl;
}
}else { out3 << endl; }
}
in3.close();
out3.close();
util.mothurRemove(alnsFileName);
rename((alnsFileName+".temp").c_str(), alnsFileName.c_str());
}
return total;
}
catch(exception& e) {
m->errorOut(e, "ChimeraUchimeCommand", "deconvoluteResults");
exit(1);
}
}
//**********************************************************************************************************************
int ChimeraUchimeCommand::readFasta(string filename, map<string, string>& seqs){
try {
//create input file for uchime
//read through fastafile and store info
ifstream in; util.openInputFile(filename, in);
while (!in.eof()) {
if (m->getControl_pressed()) { in.close(); return 0; }
Sequence seq(in); gobble(in);
seqs[seq.getName()] = seq.getAligned();
}
in.close();
return 0;
}
catch(exception& e) {
m->errorOut(e, "ChimeraUchimeCommand", "readFasta");
exit(1);
}
}
//**********************************************************************************************************************
string ChimeraUchimeCommand::getCountFile(string& inputFile){
try {
string countFile = "";
m->mothurOut("\nNo count file 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, "ChimeraUchimeCommand", "getCountFile");
exit(1);
}
}
//**********************************************************************************************************************
int getSeqs(map<string, int>& nameMap, string thisGroupsFormattedOutputFilename, string tag, string tag2, long long& numSeqs, string thisGroupsFastaFile, MothurOut* m){
try {
int error = 0;
ifstream in; Utils util; util.openInputFile(thisGroupsFastaFile, in);
vector<seqPriorityNode> nameVector;
map<string, int>::iterator itNameMap;
while (!in.eof()) {
if (m->getControl_pressed()) { break; }
Sequence seq(in); gobble(in);
itNameMap = nameMap.find(seq.getName());
if (itNameMap == nameMap.end()){
error = 1;
m->mothurOut("[ERROR]: " + seq.getName() + " is in your fastafile, but is not in your name or count file, please correct.\n");
}else {
int num = itNameMap->second;
seqPriorityNode temp(num, seq.getUnaligned(), seq.getName());
nameVector.push_back(temp);
}
}
in.close();
if (error == 1) { return 1; }
numSeqs = nameVector.size();
util.printVsearchFile(nameVector, thisGroupsFormattedOutputFilename, tag, tag2);
return error;
}
catch(exception& e) {
m->errorOut(e, "ChimeraVsearchCommand", "getSeqs");
exit(1);
}
}
//**********************************************************************************************************************
void driverGroups(uchimeData* params){
try {
int totalSeqs = 0;
for (map<string, vector<string> >::iterator it = params->parsedFiles.begin(); it != params->parsedFiles.end(); it++) {
long start = time(nullptr);
if (params->m->getControl_pressed()) { break; }
int error;
long long numSeqs = 0;
string thisGroup = it->first;
map<string, int> nameMap;
if (params->vars->hasCount) {
CountTable ct; ct.readTable(it->second[1], false, true);
nameMap = ct.getNameMap();
}
else { nameMap = params->util.readNames(it->second[1]); }
error = getSeqs(nameMap, params->formattedFastaFilename, "/ab=", "/", numSeqs, it->second[0], params->m); if ((error == 1) || params->m->getControl_pressed()) { break; }
totalSeqs += numSeqs;
params->setDriverNames((params->outputFName + thisGroup), (params->alns+thisGroup), (params->accnos+thisGroup));
driver(params);
if (params->m->getControl_pressed()) { break; }
//remove file made for uchime
if (!params->m->getDebug()) { params->util.mothurRemove(params->formattedFastaFilename); }
else { params->m->mothurOut("[DEBUG]: saving file: " + params->formattedFastaFilename + ".\n"); }
//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 (params->vars->dups) {
if (!params->util.isBlank(params->accnos+thisGroup)) {
ifstream in; params->util.openInputFile(params->accnos+thisGroup, in);
string name;
if (params->vars->hasCount) {
vector<string> namesOfChimeras;
while (!in.eof()) {
in >> name; gobble(in);
namesOfChimeras.push_back(name);
}
in.close();
params->seqs2RemoveByGroup[thisGroup] = namesOfChimeras;
}else {
map<string, string> thisnamemap; params->util.readNames(it->second[1], thisnamemap);
map<string, string>::iterator itN;
ofstream out;
params->util.openOutputFile(params->accnos+thisGroup+".temp", out);
while (!in.eof()) {
in >> name; gobble(in);
itN = thisnamemap.find(name);
if (itN != thisnamemap.end()) {
vector<string> tempNames; params->util.splitAtComma(itN->second, tempNames);
for (int j = 0; j < tempNames.size(); j++) { out << tempNames[j] << endl; }
}else { params->m->mothurOut("[ERROR]: parsing cannot find " + name + ".\n"); params->m->setControl_pressed(true); }
}
out.close();
in.close();
params->util.renameFile(params->accnos+thisGroup+".temp", params->accnos+thisGroup);
}
}
}
//append files
params->util.appendFiles((params->outputFName+thisGroup), params->outputFName); params->util.mothurRemove((params->outputFName+thisGroup));
params->util.appendFiles((params->accnos+thisGroup), params->accnos); params->util.mothurRemove((params->accnos+thisGroup));
if (params->vars->chimealns) { params->util.appendFiles((params->alns+thisGroup), params->alns); params->util.mothurRemove((params->alns+thisGroup)); }
params->m->mothurOut("\nIt took " + toString(time(nullptr) - start) + " secs to check " + toString(numSeqs) + " sequences from group " + thisGroup + ".\n");
}
params->count = totalSeqs;
}
catch(exception& e) {
params->m->errorOut(e, "ChimeraUchimeCommand", "driverGroups");
exit(1);
}
}
/**************************************************************************************************/
int ChimeraUchimeCommand::createProcessesGroups(map<string, vector<string> >& groups2Files, string outputFName, string filename, string accnos, string alns, vector<string> groups, map<string, vector<string> >& seqs2RemoveByGroup) {
try {
//sanity check
if (groups.size() < processors) { processors = groups.size(); m->mothurOut("Reducing processors to " + toString(groups.size()) + ".\n"); }
//divide the groups between the processors
vector<linePair> lines;
int remainingPairs = groups.size();
int startIndex = 0;
for (int remainingProcessors = processors; remainingProcessors > 0; remainingProcessors--) {
int numPairs = remainingPairs; //case for last processor
if (remainingProcessors != 1) { numPairs = ceil(remainingPairs / remainingProcessors); }
lines.push_back(linePair(startIndex, (startIndex+numPairs))); //startIndex, endIndex
startIndex = startIndex + numPairs;
remainingPairs = remainingPairs - numPairs;
}
//create array of worker threads
vector<std::thread*> workerThreads;
vector<uchimeData*> data;
long long num = 0;
time_t start, end;
time(&start);
//Lauch worker threads
for (int i = 0; i < processors-1; i++) {
string extension = toString(i+1) + ".temp";
vector<string> thisGroups;
map<string, vector<string> > thisGroupsParsedFiles;
for (int j = lines[i+1].start; j < lines[i+1].end; j++) {
map<string, vector<string> >::iterator it = groups2Files.find(groups[j]);
if (it != groups2Files.end()) {
thisGroupsParsedFiles[groups[j]] = (it->second);
thisGroups.push_back(groups[j]);
}
else { m->mothurOut("[ERROR]: missing files for group " + groups[j] + ", skipping\n"); }
}
uchimeData* dataBundle = new uchimeData(thisGroupsParsedFiles, outputFName+extension, uchimeLocation, templatefile, filename+extension, fastafile, countfile, accnos+extension, alns+extension, thisGroups, vars);
data.push_back(dataBundle);
workerThreads.push_back(new std::thread(driverGroups, dataBundle));
}
vector<string> thisGroups;
map<string, vector<string> > thisGroupsParsedFiles;
for (int j = lines[0].start; j < lines[0].end; j++) {
map<string, vector<string> >::iterator it = groups2Files.find(groups[j]);
if (it != groups2Files.end()) {
thisGroupsParsedFiles[groups[j]] = (it->second);
thisGroups.push_back(groups[j]);
}
else { m->mothurOut("[ERROR]: missing files for group " + groups[j] + ", skipping\n"); }
}
uchimeData* dataBundle = new uchimeData(thisGroupsParsedFiles, outputFName, uchimeLocation, templatefile, filename, fastafile, countfile, accnos, alns, thisGroups, vars);
driverGroups(dataBundle);
num = dataBundle->count;
int numChimeras = dataBundle->numChimeras;
seqs2RemoveByGroup = dataBundle->seqs2RemoveByGroup;
for (int i = 0; i < processors-1; i++) {
workerThreads[i]->join();
num += data[i]->count;
numChimeras += data[i]->numChimeras;
for (map<string, vector<string> >::iterator it = data[i]->seqs2RemoveByGroup.begin(); it != data[i]->seqs2RemoveByGroup.end(); it++) {
map<string, vector<string> >::iterator itSanity = seqs2RemoveByGroup.find(it->first);
if (itSanity == seqs2RemoveByGroup.end()) { //we haven't seen this group, should always be true
seqs2RemoveByGroup[it->first] = it->second;
}
}
string extension = toString(i+1) + ".temp";
util.appendFiles((outputFName+extension), outputFName);
util.mothurRemove((outputFName+extension));
util.appendFiles((accnos+extension), accnos);
util.mothurRemove((accnos+extension));
delete data[i];
delete workerThreads[i];
}
delete dataBundle;
time(&end);
m->mothurOut("It took " + toString(difftime(end, start)) + " secs to check " + toString(num) + " sequences.\n\n");
return num;
}
catch(exception& e) {
m->errorOut(e, "ChimeraUchimeCommand", "createProcessesGroups");
exit(1);
}
}
/**************************************************************************************************/
|