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 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
|
/* Copyright (C) 2012 Ion Torrent Systems, Inc. All Rights Reserved */
#include <string>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <fstream>
#include <iomanip>
#include <deque>
#include <map>
#include <tr1/unordered_set>
#include "IonVersion.h"
#include "OptArgs.h"
#include "api/BamMultiReader.h"
#include "api/BamWriter.h"
#include "json/json.h"
#include "ReferenceReader.h"
#include "TargetsManager.h"
#include "SampleManager.h"
// Example call:
// java -Xmx8G -cp /results/plugins/variantCaller/share/TVC/jar/
// -jar /results/plugins/variantCaller/share/TVC/jar/GenomeAnalysisTK.jar
// -T IndelAssembly
// -R /results/referenceLibrary/tmap-f3/hg19/hg19.fasta
// -I IonXpress_001_rawlib.bam
// -L "/results/uploads/BED/1108/hg19/merged/plain/CHP2.20131001.designed.bed"
// -o indel_assembly.vcf
// -S SILENT
// -U ALL
// -filterMBQ
// --short_suffix_match 5 --output_mnv 0 --min_var_count 5 --min_var_freq 0.15
// --min_indel_size 4 --max_hp_length 8 --relative_strand_bias 0.8 --kmer_len 19
using namespace std;
using namespace std::tr1;
using namespace BamTools;
void IndelAssemblyHelp() {
printf("Usage: tvcassembly [options]\n");
printf("\n");
printf("General options:\n");
printf(" -h,--help print this help message and exit\n");
printf(" -v,--version print version and exit\n");
printf(" -n,--num-threads INT number of worker threads [2]\n");
printf(" --parameters-file FILE json file with algorithm control parameters [optional]\n");
printf(" -r,--reference FILE reference fasta file [required]\n");
printf(" -b,--input-bam FILE bam file with mapped reads [required]\n");
printf(" -t,--target-file FILE only process targets in this bed file [optional]\n");
printf(" -o,--output-vcf FILE vcf file with variant calling results [required]\n");
printf(" -g,--sample-name STRING sample for which variants are called (In case of input BAM files with multiple samples) [optional if there is only one sample]\n");
printf(" --force-sample-name STRING force all read groups to have this sample name [off]\n");
printf("\n");
printf(" --kmer_len INT (klen) Size of the smallest k-mer used in assembly [19].\n");
printf(" --min_var_count INT (mincount) Minimum support for a variant to be evaluated [5].\n");
printf(" --short_suffix_match INT (ssm) Minimum sequence match on both sides of the variant [5].\n");
printf(" --min_indel_size INT (mis) Minimum size indel reported by assembly [4].\n");
printf(" --max_hp_length INT (maxhp) Variants containing HP larger than this are not reported [8].\n");
printf(" --min_var_freq FLOAT (minfreq) Minimum frequency of the variant to be reported [0.15].\n");
printf(" --min_var_score FLOAT (minscore) Minimum score of the variant to be reported [10].\n");
printf(" --relative_strand_bias FLOAT (stbias) Variants with strand bias above this are not reported [0.80].\n");
printf(" --output_mnv INT (mnv) Output multi-nucleotide variants assembled in a region with multiple adjacent variants [0].\n");
printf("\n");
}
bool ValidateAndCanonicalizePath(string &path)
{
char *real_path = realpath (path.c_str(), NULL);
if (real_path == NULL) {
perror(path.c_str());
exit(EXIT_FAILURE);
}
path = real_path;
free(real_path);
return true;
}
int RetrieveParameterInt(OptArgs &opts, Json::Value& json, char short_name, const string& long_name_hyphens, int default_value)
{
string long_name_underscores = long_name_hyphens;
for (unsigned int i = 0; i < long_name_underscores.size(); ++i)
if (long_name_underscores[i] == '-')
long_name_underscores[i] = '_';
int value = default_value;
string source = "builtin default";
if (json.isMember(long_name_underscores)) {
if (json[long_name_underscores].isString())
value = atoi(json[long_name_underscores].asCString());
else
value = json[long_name_underscores].asInt();
source = "parameters json file";
}
if (opts.HasOption(short_name, long_name_hyphens)) {
value = opts.GetFirstInt(short_name, long_name_hyphens, value);
source = "command line option";
}
cout << setw(35) << long_name_hyphens << " = " << setw(10) << value << " (integer, " << source << ")" << endl;
return value;
}
double RetrieveParameterDouble(OptArgs &opts, Json::Value& json, char short_name, const string& long_name_hyphens, double default_value)
{
string long_name_underscores = long_name_hyphens;
for (unsigned int i = 0; i < long_name_underscores.size(); ++i)
if (long_name_underscores[i] == '-')
long_name_underscores[i] = '_';
double value = default_value;
string source = "builtin default";
if (json.isMember(long_name_underscores)) {
if (json[long_name_underscores].isString())
value = atof(json[long_name_underscores].asCString());
else
value = json[long_name_underscores].asDouble();
source = "parameters json file";
}
if (opts.HasOption(short_name, long_name_hyphens)) {
value = opts.GetFirstDouble(short_name, long_name_hyphens, value);
source = "command line option";
}
cout << setw(35) << long_name_hyphens << " = " << setw(10) << value << " (double, " << source << ")" << endl;
return value;
}
class IndelAssemblyArgs {
public:
IndelAssemblyArgs(int argc, char* argv[]) {
OptArgs opts;
opts.ParseCmdLine(argc, (const char**)argv);
if (argc == 1) {
IndelAssemblyHelp();
exit(0);
}
if (opts.GetFirstBoolean('v', "version", false)) {
exit(0);
}
if (opts.GetFirstBoolean('h', "help", false)) {
IndelAssemblyHelp();
exit(0);
}
reference = opts.GetFirstString('r',"reference", "");
opts.GetOption(bams, "", 'b', "input-bam");
if (bams.empty()) {
cout << "ERROR: Argument --input-bam is required\n";
exit(-1);
}
for (unsigned int i_bam = 0; i_bam < bams.size(); ++i_bam)
ValidateAndCanonicalizePath(bams[i_bam]);
target_file = opts.GetFirstString('t',"target-file", "");
output_vcf = opts.GetFirstString('o',"output-vcf", "");
sample_name = opts.GetFirstString('g',"sample-name", "");
force_sample_name = opts.GetFirstString('-',"force-sample-name", "");
if (reference.empty()) {
cout << "ERROR: Argument --reference is required\n";
exit(1);
}
if (output_vcf.empty()) {
cout << "ERROR: Argument --output-vcf is required\n";
exit(1);
}
string parameters_file = opts.GetFirstString('-', "parameters-file", "");
Json::Value assembly_params(Json::objectValue);
if (!parameters_file.empty()) {
Json::Value parameters_json(Json::objectValue);
ifstream in(parameters_file.c_str(), ifstream::in);
if (!in.good()) {
fprintf(stderr, "[tvc] FATAL ERROR: cannot open %s\n", parameters_file.c_str());
exit(-1);
}
in >> parameters_json;
in.close();
if (parameters_json.isMember("pluginconfig"))
parameters_json = parameters_json["pluginconfig"];
assembly_params = parameters_json.get("long_indel_assembler", Json::objectValue);
}
kmer_len = RetrieveParameterInt (opts, assembly_params, '-',"kmer-len", 19);
min_var_count = RetrieveParameterInt (opts, assembly_params, '-',"min-var-count", 5);
short_suffix_match = RetrieveParameterInt (opts, assembly_params, '-',"short-suffix-match", 5);
min_indel_size = RetrieveParameterInt (opts, assembly_params, '-',"min-indel-size", 4);
max_hp_length = RetrieveParameterInt (opts, assembly_params, '-',"max-hp-length", 8);
min_var_freq = RetrieveParameterDouble(opts, assembly_params, '-',"min-var-freq", 0.15);
min_var_score = RetrieveParameterDouble(opts, assembly_params, '-',"min-var-score", 10);
relative_strand_bias = RetrieveParameterDouble(opts, assembly_params, '-',"relative-strand-bias", 0.80);
output_mnv = RetrieveParameterInt (opts, assembly_params, '-',"output-mnv", 0);
opts.CheckNoLeftovers();
}
string reference;
vector<string> bams;
string target_file;
string output_vcf;
string sample_name;
string force_sample_name;
int kmer_len;
int min_var_count;
int short_suffix_match;
int min_indel_size;
int max_hp_length;
double min_var_freq;
double min_var_score;
double relative_strand_bias;
int output_mnv;
};
class CoverageBySample {
public:
CoverageBySample() {}
CoverageBySample(int num_samples) {
if ((int)cov_by_sample[0].size() != num_samples) {
cov_by_sample[0].resize(num_samples, 0);
cov_by_sample[1].resize(num_samples, 0);
}
}
void Clear(int num_samples) {
cov_by_sample[0].assign(num_samples,0);
cov_by_sample[1].assign(num_samples,0);
}
void Increment(int strand, int sample, int num_samples) {
if ((int)cov_by_sample[0].size() != num_samples) {
cov_by_sample[0].resize(num_samples, 0);
cov_by_sample[1].resize(num_samples, 0);
}
cov_by_sample[strand][sample]++;
}
void Absorb(const CoverageBySample& other) {
if (cov_by_sample[0].size() < other.cov_by_sample[0].size()) {
cov_by_sample[0].resize(other.cov_by_sample[0].size(), 0);
cov_by_sample[1].resize(other.cov_by_sample[0].size(), 0);
}
for (int sample = 0; sample < (int)cov_by_sample[0].size(); ++sample) {
cov_by_sample[0][sample] += other.cov_by_sample[0][sample];
cov_by_sample[1][sample] += other.cov_by_sample[1][sample];
}
}
void Min(const CoverageBySample& other) {
if (cov_by_sample[0].size() < other.cov_by_sample[0].size()) {
cov_by_sample[0].resize(other.cov_by_sample[0].size(), 0);
cov_by_sample[1].resize(other.cov_by_sample[0].size(), 0);
}
for (int sample = 0; sample < (int)cov_by_sample[0].size(); ++sample) {
cov_by_sample[0][sample] = min(cov_by_sample[0][sample], other.cov_by_sample[0][sample]);
cov_by_sample[1][sample] = min(cov_by_sample[1][sample], other.cov_by_sample[1][sample]);
}
}
void Max(const CoverageBySample& other) {
if (cov_by_sample[0].size() < other.cov_by_sample[0].size()) {
cov_by_sample[0].resize(other.cov_by_sample[0].size(), 0);
cov_by_sample[1].resize(other.cov_by_sample[0].size(), 0);
}
for (int sample = 0; sample < (int)cov_by_sample[0].size(); ++sample) {
cov_by_sample[0][sample] = max(cov_by_sample[0][sample], other.cov_by_sample[0][sample]);
cov_by_sample[1][sample] = max(cov_by_sample[1][sample], other.cov_by_sample[1][sample]);
}
}
int Total() const {
int total = 0;
for (int sample = 0; sample < (int)cov_by_sample[0].size(); ++sample)
total += cov_by_sample[0][sample] + cov_by_sample[1][sample];
return total;
}
int TotalByStrand(int strand) const {
int total = 0;
for (int sample = 0; sample < (int)cov_by_sample[0].size(); ++sample)
total += cov_by_sample[strand][sample];
return total;
}
int Sample(int sample) const {
return cov_by_sample[0][sample] + cov_by_sample[1][sample];
}
int SampleByStrand(int strand, int sample) const {
return cov_by_sample[strand][sample];
}
const vector<int>& operator[](int strand) const {
return cov_by_sample[strand];
}
private:
vector<int> cov_by_sample[2];
};
class Spectrum {
public:
struct TKmer {
int freq;
int pos_in_reference;
CoverageBySample cov_by_sample;
TKmer() : freq(-1), pos_in_reference(-1) {}
void Increment(int strand, int sample, int num_samples, bool is_primary_sample) {
cov_by_sample.Increment(strand, sample, num_samples);
if (is_primary_sample)
freq++;
}
void Absorb(const TKmer& other) {
cov_by_sample.Absorb(other.cov_by_sample);
freq += other.freq;
}
};
struct pair {
int count1, count2;
char key1, key2;
pair (char k1, int c1, char k2, int c2) : count1(c1), count2(c2), key1(k1), key2(k2) {}
};
struct TVarCall {
string varSeq;
int startPos;
int endPos;
CoverageBySample varCov;
bool repeatDetected;
int lastPos;
};
map<string, TKmer> spectrum;
int KMER_LEN;
bool isERROR_INS;
int num_samples;
Spectrum(int kmerlen, int _num_samples)
: KMER_LEN(kmerlen), isERROR_INS(false), num_samples(_num_samples) {}
void add(const string& sequence, int strand, int sample, bool is_primary) {
for(int x = 0; x <= (int)sequence.length() - KMER_LEN; x++) {
TKmer& kmer = spectrum[sequence.substr(x,KMER_LEN)];
kmer.Increment(strand, sample, num_samples, is_primary);
}
}
static int getRepeatFreeKmer(const string& reference, int kmer_len) {
unordered_set<string> ref_spectrum;
int kmer_max = 3 * kmer_len;
for (; kmer_len < kmer_max; ++kmer_len) {
bool has_repeat = false;
for (int i = 0; i < (int)reference.length()-kmer_len; ++i) {
string kseq = reference.substr(i, kmer_len);
if(ref_spectrum.count(kseq)) {
has_repeat = true;
break;
}
ref_spectrum.insert(kseq);
}
if (!has_repeat)
break;
}
return kmer_len;
}
int getCounts(const string& kmer) {
if (spectrum.find(kmer) != spectrum.end())
return spectrum[kmer].freq;
return 0;
}
int getPosInReference(const string& kmer) {
if (spectrum.find(kmer) != spectrum.end())
return spectrum[kmer].pos_in_reference;
return -1;
}
pair max2pairs(const string& kmer) {
int a = getCounts(kmer + 'A');
int c = getCounts(kmer + 'C');
int g = getCounts(kmer + 'G');
int t = getCounts(kmer + 'T');
int max4 = max(a,max(c,max(g,t)));
if (a==max4) { if(c>=g) { if(c>=t) return pair('A',a,'C',c); else return pair('A',a,'T',t); }
else { if(g>=t) return pair('A',a,'G',g); else return pair('A',a,'T',t); } }
if (c==max4) { if(a>=g) { if(a>=t) return pair('C',c,'A',a); else return pair('C',c,'T',t); }
else { if(g>=t) return pair('C',c,'G',g); else return pair('C',c,'T',t); } }
if (g==max4) { if(c>=a) { if(c>=t) return pair('G',g,'C',c); else return pair('G',g,'T',t); }
else { if(a>=t) return pair('G',g,'A',a); else return pair('G',g,'T',t); } }
if(c>=g) { if(c>=a) return pair('T',t,'C',c); else return pair('T',t,'A',a); }
else { if(g>=a) return pair('T',t,'G',g); else return pair('T',t,'A',a); }
}
void updateReferenceKmers(int shift) {
for (map<string, TKmer>::iterator kmer = spectrum.begin(); kmer != spectrum.end(); ++kmer)
kmer->second.pos_in_reference = max(kmer->second.pos_in_reference - shift, -1);
}
bool KmerPresent(const string& kmerstr) {
map<string,TKmer>::iterator kmer = spectrum.find(kmerstr);
if (kmer == spectrum.end())
return false;
return kmer->second.freq >= 0;
}
bool KmerPresent(const map<string,TKmer>::iterator& kmer) {
if (kmer == spectrum.end())
return false;
return kmer->second.freq >= 0;
}
string DetectLeftAnchor(const string& reference, int minCount, int shortSuffix) {
string anchorKMer;
int firstAnchor = -1;
for (int i = 0; i <= (int)reference.length()-KMER_LEN; ++i) {
string refKMer = reference.substr(i,KMER_LEN);
if(!KmerPresent(refKMer))
continue;
spectrum[refKMer].pos_in_reference = i;
if (firstAnchor == -1 || i-firstAnchor == 1) {
string otherKmer = refKMer.substr(0,refKMer.length()-1);
pair m2p = max2pairs(otherKmer);
int nCandPath = 0;
if (m2p.count1 > minCount)
nCandPath++;
if (m2p.count2 > minCount)
nCandPath++;
if(firstAnchor != -1 && nCandPath==2 && isCorrectionEligible(anchorKMer,m2p.key1,m2p.key2)) {
if(ApplyCorrection(anchorKMer,m2p.key1,m2p.key2))
return "REPEAT";
nCandPath = 1;
}
if(nCandPath==1 && refKMer == otherKmer+m2p.key1) {
firstAnchor = i;
anchorKMer = refKMer;
}
}
}
if( ((int)reference.length() - firstAnchor - 1 - KMER_LEN) < shortSuffix || firstAnchor == -1)
return "NULL";
else
return anchorKMer;
}
bool isCorrectionEligible(const string& prevKmer, char fixBase, char errorBase) {
//check if error is in HP (remove this condition when to consider other types of errors)
if (prevKmer[prevKmer.length()-1] == fixBase || prevKmer[prevKmer.length()-1] == errorBase) {
string fixedKmer = prevKmer.substr(1) + fixBase;
string fixedNext = fixedKmer.substr(1) + errorBase;
string errorKmer = prevKmer.substr(1) + errorBase;
if (!KmerPresent(errorKmer) || !KmerPresent(fixedKmer))
return false;
int countError = spectrum[errorKmer].freq;
int countFixed = spectrum[fixedKmer].freq;
if(/*countError <= 0.1*(countError+countFixed) ||*/ KmerPresent(fixedNext)) {
string seqPostError = advanceOnMaxPath(errorKmer,5);
string seqPostFix = advanceOnMaxPath(fixedKmer,5);
if (seqPostError.empty() || seqPostFix.empty())
return false;
if (seqPostFix.find(seqPostError.substr(1)) == 0) {
isERROR_INS = true;
return true;
}
if(seqPostError.find(seqPostFix.substr(1)) == 0) {
isERROR_INS = false;
return true;
}
}
}
return false;
}
bool ApplyCorrection(const string& prevKmer, char fixBase, char errorBase) {
string errSeq = prevKmer.substr(1) + errorBase;
string fixSeq;
string extendingSeq = advanceOnMaxPath(errSeq,KMER_LEN);
map<string,TKmer>::iterator errKmer = spectrum.find(errSeq);
map<string,TKmer>::iterator fixKmer = spectrum.end();
if (isERROR_INS) {
fixSeq = prevKmer;
fixKmer = spectrum.find(fixSeq);
if(KmerPresent(fixKmer) && KmerPresent(errKmer)) {
fixKmer->second.Absorb(errKmer->second);
errKmer->second.freq = -1;
}
} else {
fixSeq = prevKmer.substr(1)+fixBase;
fixKmer = spectrum.find(fixSeq);
if (KmerPresent(fixKmer) && KmerPresent(errKmer))
fixKmer->second.Absorb(errKmer->second);
fixSeq = fixSeq.substr(1) + errorBase;
fixKmer = spectrum.find(fixSeq);
if (KmerPresent(fixKmer) && KmerPresent(errKmer)){
fixKmer->second.Absorb(errKmer->second);
errKmer->second.freq = -1;
}
}
for (int i = 0; i < (int)extendingSeq.length(); ++i) {
errSeq = errSeq.substr(1) + extendingSeq[i];
fixSeq = fixSeq.substr(1) + extendingSeq[i];
errKmer = spectrum.find(errSeq);
fixKmer = spectrum.find(fixSeq);
if (KmerPresent(fixKmer) && KmerPresent(errKmer)) {
if (errSeq == fixSeq || fixKmer->second.freq == -1)
return true;
fixKmer->second.Absorb(errKmer->second);
errKmer->second.freq = -1;
}
}
return false; // returns true when a repeat is detected
}
string advanceOnMaxPath(string startKmer, int stepsAhead) {
string varSeq;
varSeq.reserve(stepsAhead);
while ((int)varSeq.length() < stepsAhead) {
startKmer = startKmer.substr(1);
pair m2p = max2pairs(startKmer);
if (m2p.count1 <= 1)
break;
startKmer += m2p.key1;
varSeq += m2p.key1;
}
return varSeq;
}
bool getPath(const string& anchorKMer, int minCount, int WINDOW_PREFIX, TVarCall& results) {
results.startPos = spectrum[anchorKMer].pos_in_reference + KMER_LEN;
results.varSeq.clear();
string nextKmer;
string prevKmer = anchorKMer;
string tmpKmer;
results.varCov.Clear(num_samples);
while ((int)results.varSeq.length() < WINDOW_PREFIX) {
nextKmer = prevKmer.substr(1);
pair m2p = max2pairs(nextKmer);
int nCandPath = (m2p.count1 > minCount ? 1 : 0) + (m2p.count2 > minCount ? 1 : 0);
if (nCandPath == 0)
break;
tmpKmer = nextKmer + m2p.key1;
results.endPos = spectrum[tmpKmer].pos_in_reference;
// if we have 2 candidates and we picked reference then change it to variant
if (nCandPath == 2 && results.endPos > -1 && results.varSeq.empty()) {
m2p.key1 = m2p.key2;
m2p.count1 = m2p.count2;
nCandPath = 1;
tmpKmer = nextKmer + m2p.key1;
results.endPos = spectrum[tmpKmer].pos_in_reference;
}
if (results.endPos > -1 && results.varSeq.empty()) {
results.varCov.Clear(num_samples);
results.lastPos = 0;
results.repeatDetected = true;
return false;
}
if (results.endPos >= results.startPos) {
results.lastPos = results.endPos;
results.repeatDetected = false;
return true;
}
if(results.endPos >= -1)
spectrum[tmpKmer].pos_in_reference = -2;
else if((results.endPos==-2 || results.varSeq.empty()) && nCandPath == 2) {
tmpKmer = nextKmer + m2p.key2;
results.endPos = spectrum[tmpKmer].pos_in_reference;
if (results.endPos >= results.startPos) {
results.lastPos = results.endPos;
results.repeatDetected = false;
return true;
} else if (results.endPos==-1)
spectrum[tmpKmer].pos_in_reference = -2;
else if (results.endPos==-2) {
results.varCov.Clear(num_samples);
results.lastPos = 0;
results.repeatDetected = true;
return false;
}
m2p.key1 = m2p.key2;
m2p.count1 = m2p.count2;
nCandPath = 1;
} else {
results.varCov.Clear(num_samples);
results.lastPos = 0;
results.repeatDetected = true;
return false;
}
if (nCandPath == 2 && isCorrectionEligible(prevKmer,m2p.key1,m2p.key2)) {
if (ApplyCorrection(prevKmer,m2p.key1,m2p.key2)) {
results.varCov.Clear(num_samples);
results.lastPos = 0;
results.repeatDetected = true;
return false;
}
}
if (results.varSeq.empty())
results.varCov = spectrum[tmpKmer].cov_by_sample;
else
results.varCov.Min(spectrum[tmpKmer].cov_by_sample);
results.varSeq += m2p.key1;
prevKmer = tmpKmer;
}
results.endPos = 0;
results.lastPos = results.startPos + 1;
results.repeatDetected = false;
return true;
}
int getKMER_LEN() {
return KMER_LEN;
}
};
class IndelAssembly {
public:
IndelAssembly(IndelAssemblyArgs *_options, ReferenceReader *_reference_reader, SampleManager *_sample_manager) {
options = _options;
reference_reader = _reference_reader;
sample_manager = _sample_manager;
MIN_VAR_COUNT = options->min_var_count;
VAR_FREQ = options->min_var_freq;
KMER_LEN = options->kmer_len; // fixed for now
SHORT_SUFFIX_MATCH = options->short_suffix_match;
RELATIVE_STRAND_BIAS = options->relative_strand_bias;
ASSEMBLE_SOFTCLIPS_ONLY = false;
SKIP_MNV = (options->output_mnv == 0);
MIN_INDEL_SIZE = options->min_indel_size;
MAX_HP_LEN = options->max_hp_length;
curChrom = -1;
curLeft = -1;
softclip_event_start[0] = softclip_event_start[1] = 0;
softclip_event_length[0] = softclip_event_length[1] = 0;
indel_event_last[0] = indel_event_last[1] = 0;
assemStart = 0;
assemVarCov_positive = 0;
assemVarCov_negative = 0;
assembly_total_cov.Clear(sample_manager->num_samples_);
coverage.resize(WINDOW_SIZE, sample_manager->num_samples_);
out.open(options->output_vcf.c_str());
OutputVcfHeader();
}
~IndelAssembly() {
out.close();
}
struct Coverage {
int soft_clip[2];
int indel[2];
CoverageBySample total;
Coverage(int num_samples) {
Clear(num_samples);
}
void Clear(int num_samples) {
soft_clip[0] = soft_clip[1] = indel[0] = indel[1] = 0;
total.Clear(num_samples);
}
};
IndelAssemblyArgs *options;
ReferenceReader *reference_reader;
SampleManager *sample_manager;
ofstream out;
const static int WINDOW_PREFIX = 300; // set it to max read length
const static int WINDOW_SIZE = 2*WINDOW_PREFIX;
int MIN_VAR_COUNT;
double VAR_FREQ;
int KMER_LEN; // fixed for now
int SHORT_SUFFIX_MATCH;
double RELATIVE_STRAND_BIAS;
bool ASSEMBLE_SOFTCLIPS_ONLY;
bool SKIP_MNV;
int MIN_INDEL_SIZE;
int MAX_HP_LEN;
deque<Coverage> coverage;
int curLeft;
int curChrom;
int softclip_event_start[2];
int softclip_event_length[2];
int indel_event_last[2];
int assemStart;
int assemVarCov_positive;
int assemVarCov_negative;
CoverageBySample assembly_total_cov;
deque<BamAlignment> ReadsBuffer;
deque<BamAlignment> pre_buffer;
struct VarInfo {
int contig;
int pos;
string ref;
string var;
VarInfo(int _contig, int _pos, const string& _ref, const string& _var)
: contig(_contig), pos(_pos), ref(_ref), var(_var) {}
};
deque<VarInfo> calledVariants;
int getSoftEnd(BamAlignment& alignment) {
int position = alignment.Position + 1;
bool left_clip_skipped = false;
for(int j = 0; j < (int)alignment.CigarData.size(); j++) {
char cgo = alignment.CigarData[j].Type;
int cgl = alignment.CigarData[j].Length;
if ((cgo == 'H' || cgo == 'S') && !left_clip_skipped)
continue;
left_clip_skipped = true;
if (cgo == 'H')
break;
if (cgo == 'S' || cgo == 'M' || cgo == 'D' || cgo == 'N')
position += cgl;
}
return position;
}
int getSoftStart(BamAlignment& alignment) {
int position = alignment.Position + 1;
for(vector<CigarOp>::const_iterator cigar = alignment.CigarData.begin(); cigar != alignment.CigarData.end(); ++cigar) {
if (cigar->Type == 'H')
continue;
if (cigar->Type == 'S') {
position -= cigar->Length;
continue;
}
break;
}
return position;
}
void SetReferencePoint(BamAlignment& read) {
curChrom = read.RefID;
curLeft = max(getSoftStart(read) - WINDOW_PREFIX, 0);
softclip_event_start[0] = softclip_event_start[1] = 0;
softclip_event_length[0] = softclip_event_length[1] = 0;
indel_event_last[0] = indel_event_last[1] = 0;
assemStart = 0;
assemVarCov_positive = assemVarCov_negative = 0;
assembly_total_cov.Clear(sample_manager->num_samples_);
}
void map(BamAlignment& read) {
int sample;
bool is_primary;
if (!sample_manager->IdentifySample(read, sample, is_primary))
return;
if (!is_primary) {
pre_buffer.push_back(read);
return;
}
int delta = WINDOW_SIZE; // signal start of a new chromosome
if (curChrom == read.RefID)
delta = getSoftEnd(read) - curLeft - WINDOW_SIZE;
// Window is about to shift forward
if(delta > 0) {
DetectCandidateRegions(min(delta,WINDOW_SIZE));
if (delta >= WINDOW_SIZE) { // Big shift
SetReferencePoint(read);
cleanCounts();
ReadsBuffer.clear();
} else { // Small shift
shiftCounts(delta);
curLeft += delta;
while(!ReadsBuffer.empty() && getSoftEnd(ReadsBuffer.front()) <= curLeft)
ReadsBuffer.pop_front();
}
}
while (!pre_buffer.empty()) {
if (getSoftEnd(pre_buffer.front()) > curLeft) {
ReadsBuffer.push_back(pre_buffer.front());
AddCounts(pre_buffer.front());
}
pre_buffer.pop_front();
}
ReadsBuffer.push_back(read);
AddCounts(read);
}
void onTraversalDone() {
DetectCandidateRegions(WINDOW_SIZE);
}
void cleanCounts() {
for (deque<Coverage>::iterator I = coverage.begin(); I != coverage.end(); ++I)
I->Clear(sample_manager->num_samples_);
}
void shiftCounts(int delta) {
coverage.erase(coverage.begin(), coverage.begin()+delta);
coverage.resize(WINDOW_SIZE, sample_manager->num_samples_);
}
void DetectCandidateRegions(int wsize) {
if (curChrom < 0)
return;
for(int i = 0; i < wsize; ++i) {
for (int strand = 0; strand <= 1; ++strand) {
//tracking soft-clips on positive strand
if(coverage[i].soft_clip[strand] > MIN_VAR_COUNT) {
if(softclip_event_start[strand] == 0)
softclip_event_start[strand] = curLeft + i; // begin tracking
softclip_event_length[strand] = curLeft + i - softclip_event_start[strand]; // continue tracking
} else if(curLeft + i - softclip_event_start[strand] - softclip_event_length[strand] > KMER_LEN // stop tracking
&& (i+softclip_event_length[strand] >= WINDOW_SIZE
|| coverage[i+softclip_event_length[strand]].soft_clip[1-strand] < MIN_VAR_COUNT))
softclip_event_start[strand] = softclip_event_length[strand] = 0;
if (!ASSEMBLE_SOFTCLIPS_ONLY) {
//tracking indels on positive strand
if (coverage[i].indel[strand] > MIN_VAR_COUNT
|| (coverage[i].total.SampleByStrand(strand,sample_manager->primary_sample_) > 2*MIN_VAR_COUNT && coverage[i].indel[strand] >= 2*VAR_FREQ*coverage[i].total.SampleByStrand(strand,sample_manager->primary_sample_))
|| (coverage[i].total.SampleByStrand(strand,sample_manager->primary_sample_) > MIN_VAR_COUNT/2 && coverage[i].indel[strand] >= 4*VAR_FREQ*coverage[i].total.SampleByStrand(strand,sample_manager->primary_sample_)))
indel_event_last[strand] = curLeft + i;
else if(curLeft + i - indel_event_last[strand] > KMER_LEN)
indel_event_last[strand] = 0;
}
}
// start assembly tracking if any event observed
if(assemStart == 0) {
if (softclip_event_length[0] > KMER_LEN || softclip_event_length[1] > KMER_LEN)
assemStart = curLeft + i - KMER_LEN;
else if (indel_event_last[0] + indel_event_last[1] > 0)
assemStart = curLeft + i;
}
// accumulate assembly coverage stats
if(assemStart > 0) {
assemVarCov_positive = max(assemVarCov_positive, ((softclip_event_length[0] > KMER_LEN) ? coverage[i].soft_clip[0] : 0 ) + coverage[i].indel[0]);
assemVarCov_negative = max(assemVarCov_negative, ((softclip_event_length[1] > KMER_LEN) ? coverage[i].soft_clip[1] : 0 ) + coverage[i].indel[1]);
assembly_total_cov.Max(coverage[i].total);
}
else {
assembly_total_cov = coverage[i].total;
}
int assemLen = assemStart > 0 ? curLeft + i - assemStart : 0;
if (assemLen > WINDOW_PREFIX
|| softclip_event_start[0] + softclip_event_start[1] + indel_event_last[0] + indel_event_last[1] == 0
|| i == wsize-1) {
if(assemLen > 0) {
if(assemLen == KMER_LEN+1 && assemStart - curLeft >=0) { //clear single indel case
assemVarCov_positive = coverage[assemStart - curLeft].soft_clip[0] + coverage[assemStart - curLeft].indel[0];
assemVarCov_negative = coverage[assemStart - curLeft].soft_clip[1] + coverage[assemStart - curLeft].indel[1];
}
if(passFilter())
SegmentAssembly(assemStart, assemLen);
}
assemStart = assemVarCov_positive = assemVarCov_negative = 0;
assembly_total_cov.Clear(sample_manager->num_samples_);
}
}
}
bool passFilter() {
if ((assemVarCov_positive + assemVarCov_negative) < VAR_FREQ*assembly_total_cov.Sample(sample_manager->primary_sample_)) //(assemTotCov_positive + assemTotCov_negative))
return false;
if (assembly_total_cov.SampleByStrand(0,sample_manager->primary_sample_) > 3 && assembly_total_cov.SampleByStrand(1,sample_manager->primary_sample_) > 3) {
float factor1 = assemVarCov_negative * assembly_total_cov.SampleByStrand(0,sample_manager->primary_sample_);
float factor2 = assemVarCov_positive * assembly_total_cov.SampleByStrand(1,sample_manager->primary_sample_);
return (max(factor1,factor2) / (factor1+factor2)) < RELATIVE_STRAND_BIAS;
}
return true;
}
void BuildKMerSpectrum(Spectrum& spectrum, int assemStart, int assemLength) {
for(int i = 0; i < (int)ReadsBuffer.size(); ++i) {
BamAlignment& read = ReadsBuffer[i];
int strand = read.IsReverseStrand() ? 1 : 0;
int sample;
bool is_primary;
if (!sample_manager->IdentifySample(read, sample, is_primary))
continue;
int read_assem_start = assemStart - getSoftStart(read);
int read_pos = 0;
int lastIncluded = 0;
int prev_cgl = 0;
for(int j = 0; j < (int)read.CigarData.size() && read_pos-read_assem_start < assemLength; ++j) {
char cgo = read.CigarData[j].Type;
int cgl = read.CigarData[j].Length;
if(cgo == 'S' || ((cgo == 'I' || cgo == 'D') && cgl>2)) {
if (read_pos + cgl > read_assem_start) {
int startPos = max(read_pos, read_assem_start) - ((cgo == 'S') ? (KMER_LEN+10) : prev_cgl);
int stopPos = read_pos + cgl + ((j == 0 && cgo == 'S') ? cgl : assemLength) + KMER_LEN + 1;
if (lastIncluded < stopPos - KMER_LEN) {
int seqStart = max(startPos, lastIncluded);
int seqStop = min(stopPos, (int)read.QueryBases.length());
if(seqStart >= (int)read.QueryBases.length() || seqStart >= seqStop - KMER_LEN)
break;
spectrum.add(read.QueryBases.substr(seqStart, seqStop - seqStart), strand, sample, is_primary);
if (stopPos >= (int)read.QueryBases.length())
break;
lastIncluded = stopPos - KMER_LEN;
if(lastIncluded < 0)
lastIncluded = 0;
}
}
}
if(cgo != 'D' && cgo != 'H')
read_pos += cgl;
prev_cgl = cgl;
}
}
}
void SegmentAssembly(int assemStart, int assemLength) {
if (assemStart >= (int)reference_reader->chr_size(curChrom))
return;
//cout << "SegmentAssembly(" << assemStart << "," << assemLength << ",chr="<< curChrom <<",nreads=" << ReadsBuffer.size() << ")\n";
int KMER_EXT = 3*KMER_LEN;
int kmerlen = KMER_LEN;
int genStart = max(assemStart-KMER_EXT, 1);
int genStop = min(assemStart + assemLength + KMER_EXT + 1, (int)reference_reader->chr_size(curChrom));
string reference = reference_reader->substr(curChrom, genStart-1, genStop-genStart+1);
// auto detect the size of k-mer to guarantee uniqueness
kmerlen = Spectrum::getRepeatFreeKmer(reference, kmerlen);
// the loop is created to support re-assembly in case of repeat detection
while(kmerlen <= KMER_EXT) {
Spectrum spectrum(kmerlen, sample_manager->num_samples_);
BuildKMerSpectrum(spectrum, assemStart, assemLength);
int repeatSegment = DetectIndel(genStart, reference, spectrum);
if(repeatSegment == -1)
break;
int delta = repeatSegment - genStart;
genStart += delta;
assemStart += delta;
assemLength -= delta;
if (assemLength <= 0)
break;
kmerlen += KMER_LEN/2;
reference = reference.substr(delta);
}
}
int DetectIndel (int genStart, string reference, Spectrum& spectrum) {
int cutFreq = (int)(0.1*(assemVarCov_positive + assemVarCov_negative)); // check this later
if(cutFreq<MIN_VAR_COUNT)
cutFreq = MIN_VAR_COUNT;
int kmerlen = spectrum.getKMER_LEN();
for(bool keepAssembling = true; keepAssembling;) { // assemble multiple events in a single window
keepAssembling = false;
string anchorKMer = spectrum.DetectLeftAnchor(reference,cutFreq,SHORT_SUFFIX_MATCH);
if (anchorKMer == "NULL")
break;
if (anchorKMer == "REPEAT")
return genStart; // attempt to re-assemble with larger k-mer
Spectrum::TVarCall var;
bool no_repeats = spectrum.getPath(anchorKMer, cutFreq, WINDOW_PREFIX, var);
if(!no_repeats)
return genStart; // attempt to re-assemble with larger k-mer
if (!var.varSeq.empty() &&
var.varCov.Sample(sample_manager->primary_sample_) >= MIN_VAR_COUNT &&
var.varCov.Sample(sample_manager->primary_sample_) >= VAR_FREQ * assembly_total_cov.Sample(sample_manager->primary_sample_)) {
if(var.endPos > 0) {
if((int)var.varSeq.length() >= kmerlen-1 && (int)var.varSeq.length() - kmerlen + 1 > var.endPos - var.startPos) {
// INSERTION type 0 or 4 for MNV
PrintVCF(reference, var, curChrom, genStart + var.startPos - 1,
reference.substr(var.startPos - 1, var.endPos-var.startPos + (var.endPos-var.startPos > 0 ? 1:0) + 1),
anchorKMer.substr(anchorKMer.length()-1) + var.varSeq.substr(0, var.varSeq.length() - kmerlen + (var.endPos - var.startPos > 0 ? 2:1)),
var.varSeq.length() - kmerlen + 1,
var.endPos - var.startPos > 0 ? 4 : 0,
50);
} else if((int)var.varSeq.length() - kmerlen + 1 <= var.endPos - var.startPos) {
// DELETION type 1 or 5 for MNV
if((int)var.varSeq.length() + 1 - kmerlen >= 0) {
PrintVCF(reference, var, curChrom, genStart + var.startPos - 1,
reference.substr(var.startPos - 1, var.endPos+(var.varSeq.length() - kmerlen + 1 > 0 ? 1:0) - (var.startPos - 1)),
reference.substr(var.startPos - 1, 1) + ((var.varSeq.length() - kmerlen + 1 > 0) ? (var.varSeq.substr(0,var.varSeq.length()-kmerlen+1) + reference.substr(var.endPos,1)):""),
var.endPos - var.startPos,
var.varSeq.length() - kmerlen + 1 > 0 ? 5 : 1,
50);
} else {
PrintVCF(reference, var, curChrom, genStart + var.startPos - 1,
reference.substr(var.startPos - 1, var.endPos + kmerlen - var.varSeq.length()-1 - (var.startPos - 1)),
reference.substr(var.startPos - 1, 1),
var.endPos - var.startPos + kmerlen - var.varSeq.length() - 1,
1,
50);
}
}
} else if(var.endPos==0 && (int)var.varSeq.length() >= SHORT_SUFFIX_MATCH) {
string shortSuffix = var.varSeq.substr(var.varSeq.length()-SHORT_SUFFIX_MATCH);
string refSuffix = reference.substr(var.startPos);
string shortRef = refSuffix.substr(0, min(kmerlen,(int)refSuffix.length()));
string preffix = var.varSeq.substr(0, min(kmerlen,(int)var.varSeq.length()));
size_t x = ((int)preffix.length() > SHORT_SUFFIX_MATCH) ? refSuffix.find(preffix) : string::npos;
if (x > 0 && x != string::npos) {
// DELETION type 3
// to-do: support MNV
PrintVCF(reference, var, curChrom, genStart + var.startPos - 1,
reference.substr(var.startPos - 1, 1 + x),
reference.substr(var.startPos - 1, 1),
x,
3,
(75+2*(2*preffix.length()-kmerlen/5))/10);
} else if(shortRef.find(shortSuffix) != string::npos) {
int delta = 0;
int sufsz = SHORT_SUFFIX_MATCH;
int nummatch = 0;
while (shortRef.find(shortSuffix) != string::npos) {
nummatch = 0;
for(int i = 0; (i+sufsz) < (int)shortRef.length() && (int)shortSuffix.length() == sufsz && nummatch < 2; i++) {
if(shortRef.substr(i,sufsz) == shortSuffix) {
delta = i;
nummatch++;
}
}
if(nummatch < 2)
break;
sufsz += 3;
if((int)var.varSeq.length() > sufsz)
shortSuffix = var.varSeq.substr(var.varSeq.length() - sufsz);
}
if(nummatch == 1) {
// this is very simplistic decision, overcall/undercall can produce unexpected result, sequence comparison is required at this step
// do it later , produce an MNV
if((int)var.varSeq.length() < delta + sufsz) {
// DELETION type 3
PrintVCF(reference, var, curChrom, genStart + var.startPos - 1,
reference.substr(var.startPos - 1, delta + sufsz - var.varSeq.length() + 1),
reference.substr(var.startPos - 1, 1),
delta + sufsz - var.varSeq.length(),
3,
1);
} else {
// INSERTION type 2
PrintVCF(reference, var, curChrom, genStart + var.startPos - 1,
anchorKMer.substr(anchorKMer.length()-1),
anchorKMer.substr(anchorKMer.length()-1) + var.varSeq.substr(0, var.varSeq.length() - delta - sufsz),
var.varSeq.length() - delta - sufsz,
2,
2);
}
}
}
}
}
if(var.lastPos > 0 && var.lastPos <= (int)reference.length()- kmerlen - SHORT_SUFFIX_MATCH && var.lastPos <= (int)reference.length() - 2*kmerlen) {
reference = reference.substr(var.lastPos);
genStart += var.lastPos;
spectrum.updateReferenceKmers(var.lastPos);
keepAssembling = true;
}
}
return -1;
}
void PrintVCF(const string& refwindow, const Spectrum::TVarCall& v, int contig, int pos,
string ref, string var,
int varLen, int type, int qual) {
if (varLen < MIN_INDEL_SIZE)
return;
if (SKIP_MNV && type > 3)
return; // do not produce MNV
int varCounts = v.varCov.Sample(sample_manager->primary_sample_);
int totCounts = max(assembly_total_cov.Sample(sample_manager->primary_sample_), 1);
int refCounts = max(totCounts - varCounts, 0);
// Left Align the variant
if(type < 4) {
while (pos > 1) {
if (ref[ref.length()-1] != var[var.length()-1])
break;
char pad = reference_reader->base(contig, pos-2);
ref = pad + ref.substr(0, ref.length()-1);
var = pad + var.substr(0, var.length()-1);
--pos;
}
}
string hpMaxString = refwindow.substr(max(v.startPos-1-MAX_HP_LEN, 0), v.startPos-1 - max(v.startPos-1-MAX_HP_LEN, 0))
+ var + refwindow.substr(v.startPos + ref.length() - 1, min(v.startPos + ref.length() - 1 + MAX_HP_LEN, refwindow.length()) - (v.startPos + ref.length() - 1));
bool hpMax = false;
// max HP length check
if (MAX_HP_LEN < 20) {
if(hpMaxString.find("AAAAAAAAAAAAAAAAAAAA", 0, MAX_HP_LEN) != string::npos)
hpMax = true;
else if(hpMaxString.find("CCCCCCCCCCCCCCCCCCCC", 0, MAX_HP_LEN) != string::npos)
hpMax = true;
else if(hpMaxString.find("GGGGGGGGGGGGGGGGGGGG", 0, MAX_HP_LEN) != string::npos)
hpMax = true;
else if(hpMaxString.find("TTTTTTTTTTTTTTTTTTTT", 0, MAX_HP_LEN) != string::npos)
hpMax = true;
}
if (hpMax)
qual = 0;
if (varCounts < 30)
qual = qual / (30-varCounts);
if (qual < options->min_var_score)
return;
float varfq = (totCounts <= varCounts) ? 1.0f : ((float)varCounts)/((float)totCounts);
float reffq = (totCounts <= refCounts) ? 1.0f : ((float)refCounts)/((float)totCounts);
string genotype = (reffq > 0.2) ? "0/1" : "1/1";
// Ensure the same variant is not reported twice
int i = calledVariants.size() - 1;
while(i > -1 && calledVariants[i].contig == contig && abs(pos - calledVariants[i].pos) < 300) {
if(calledVariants[i].pos == pos && calledVariants[i].ref == ref && calledVariants[i].var == var)
return;
i--;
}
for(int j = 0; j <= i; j++)
calledVariants.pop_front();
calledVariants.push_back(VarInfo(contig, pos, ref, var));
out << reference_reader->chr(contig) << "\t"
<< pos << "\t"
<< "." << "\t"
<< ref << "\t"
<< var << "\t"
<< qual << "\t"
<< "PASS" << "\t"
<< "AO=" << v.varCov.Total() << ";"
<< "DP=" << assembly_total_cov.Total() << ";"
<< "LEN=" << varLen << ";"
<< "RO=" << max(assembly_total_cov.Total() - v.varCov.Total(), 0) << ";"
<< "SAF=" << v.varCov.TotalByStrand(0) << ";"
<< "SAR=" << v.varCov.TotalByStrand(1) << ";"
<< "SRF=" << max(assembly_total_cov.TotalByStrand(0)-v.varCov.TotalByStrand(0), 0) << ";"
<< "SRR=" << max(assembly_total_cov.TotalByStrand(1)-v.varCov.TotalByStrand(1), 0) << ";"
<< "AF=" << (assembly_total_cov.Total() ? v.varCov.Total()/(float)assembly_total_cov.Total() : 0) <<";"
<< "TYPE=" << (type>3?"mnv":(ref.length()>var.length() ? "del" : (ref.length()<var.length() ? "ins" : "snp"))) << "\t"
<< "GT:GQ:DP:RO:AO:SAF:SAR:SRF:SRR:AF"
<< "\t" << genotype << ":99:"
<< assembly_total_cov.Sample(sample_manager->primary_sample_) << ":"
<< max(assembly_total_cov.Sample(sample_manager->primary_sample_) - v.varCov.Sample(sample_manager->primary_sample_), 0) << ":"
<< v.varCov.Sample(sample_manager->primary_sample_) << ":"
<< v.varCov.SampleByStrand(0, sample_manager->primary_sample_) << ":"
<< v.varCov.SampleByStrand(1, sample_manager->primary_sample_) << ":"
<< max(assembly_total_cov.SampleByStrand(0, sample_manager->primary_sample_) - v.varCov.SampleByStrand(0, sample_manager->primary_sample_), 0) << ":"
<< max(assembly_total_cov.SampleByStrand(1, sample_manager->primary_sample_) - v.varCov.SampleByStrand(1, sample_manager->primary_sample_), 0) << ":"
<< (assembly_total_cov.Sample(sample_manager->primary_sample_) ? v.varCov.Sample(sample_manager->primary_sample_)/(float)assembly_total_cov.Sample(sample_manager->primary_sample_) : 0);
for (int sample = 0; sample < sample_manager->num_samples_; ++sample) {
if (sample == sample_manager->primary_sample_)
continue;
out << "\t./.:0:"
<< assembly_total_cov.Sample(sample) << ":"
<< max(assembly_total_cov.Sample(sample) - v.varCov.Sample(sample), 0) << ":"
<< v.varCov.Sample(sample) << ":"
<< v.varCov.SampleByStrand(0, sample) << ":"
<< v.varCov.SampleByStrand(1, sample) << ":"
<< max(assembly_total_cov.SampleByStrand(0, sample) - v.varCov.SampleByStrand(0, sample), 0) << ":"
<< max(assembly_total_cov.SampleByStrand(1, sample) - v.varCov.SampleByStrand(1, sample), 0) << ":"
<< (assembly_total_cov.Sample(sample) ? v.varCov.Sample(sample)/(float)assembly_total_cov.Sample(sample) : 0);
}
out << "\n";
}
void OutputVcfHeader() {
out << "##fileformat=VCFv4.1\n";
out << "##source=\"tvcassembly "<<IonVersion::GetVersion()<<"-"<<IonVersion::GetRelease()<<" ("<<IonVersion::GetGitHash()<<")\"\n";
out << "##reference=" << options->reference << "\n";
out << "##INFO=<ID=DP,Number=1,Type=Integer,Description=\"Total read depth at the locus\">\n";
out << "##INFO=<ID=RO,Number=1,Type=Integer,Description=\"Reference allele observations\">\n";
out << "##INFO=<ID=AO,Number=A,Type=Integer,Description=\"Alternate allele observations\">\n";
out << "##INFO=<ID=SRF,Number=1,Type=Integer,Description=\"Number of reference observations on the forward strand\">\n";
out << "##INFO=<ID=SRR,Number=1,Type=Integer,Description=\"Number of reference observations on the reverse strand\">\n";
out << "##INFO=<ID=SAF,Number=A,Type=Integer,Description=\"Alternate allele observations on the forward strand\">\n";
out << "##INFO=<ID=SAR,Number=A,Type=Integer,Description=\"Alternate allele observations on the reverse strand\">\n";
out << "##INFO=<ID=AF,Number=A,Type=Float,Description=\"Allele frequency based on Flow Evaluator observation counts\">\n";
out << "##INFO=<ID=TYPE,Number=A,Type=String,Description=\"The type of allele, either snp, mnp, ins, del, or complex.\">\n";
out << "##INFO=<ID=LEN,Number=A,Type=Integer,Description=\"Allele length\">\n";
out << "##FORMAT=<ID=GT,Number=1,Type=String,Description=\"Genotype\">\n";
out << "##FORMAT=<ID=GQ,Number=1,Type=Integer,Description=\"Genotype Quality, the Phred-scaled marginal (or unconditional) probability of the called genotype\">\n";
out << "##FORMAT=<ID=DP,Number=1,Type=Integer,Description=\"Read Depth\">\n";
out << "##FORMAT=<ID=RO,Number=1,Type=Integer,Description=\"Reference allele observation count\">\n";
out << "##FORMAT=<ID=AO,Number=A,Type=Integer,Description=\"Alternate allele observation count\">\n";
out << "##FORMAT=<ID=SRF,Number=1,Type=Integer,Description=\"Number of reference observations on the forward strand\">\n";
out << "##FORMAT=<ID=SRR,Number=1,Type=Integer,Description=\"Number of reference observations on the reverse strand\">\n";
out << "##FORMAT=<ID=SAF,Number=A,Type=Integer,Description=\"Alternate allele observations on the forward strand\">\n";
out << "##FORMAT=<ID=SAR,Number=A,Type=Integer,Description=\"Alternate allele observations on the reverse strand\">\n";
out << "##FORMAT=<ID=AF,Number=A,Type=Float,Description=\"Allele frequency based on Flow Evaluator observation counts\">\n";
out << "#CHROM\tPOS\tID\tREF\tALT\tQUAL\tFILTER\tINFO\tFORMAT\t" << sample_manager->sample_names_[sample_manager->primary_sample_];
for (int sample = 0; sample < sample_manager->num_samples_; ++sample)
if (sample != sample_manager->primary_sample_)
out << "\t" << sample_manager->sample_names_[sample];
out <<"\n";
}
void AddCounts(BamAlignment& read) {
int position_in_window = getSoftStart(read) - curLeft;
int position_in_read = 0;
if (position_in_window < 0) {
// out.println("A read started upfront window! Increase WINDOW_PREFIX. Read skipped.");
return;
}
int strand = read.IsReverseStrand() ? 1 : 0;
int sample;
bool is_primary;
if (!sample_manager->IdentifySample(read, sample, is_primary))
return;
bool after_match = false;
for (vector<CigarOp>::const_iterator cigar = read.CigarData.begin(); cigar != read.CigarData.end(); ++cigar) {
if (cigar->Type == 'S') {
if (is_primary) {
if (after_match) {
for(int j = position_in_window; j < position_in_window + min((int)cigar->Length,4*KMER_LEN) && j < WINDOW_SIZE; ++j)
coverage[j].soft_clip[strand]++;
} else {
for(int j = position_in_window+max((int)cigar->Length - 4*KMER_LEN, 0); j < position_in_window + (int)cigar->Length && j < WINDOW_SIZE; ++j)
coverage[j].soft_clip[strand]++;
}
}
position_in_window += cigar->Length;
position_in_read += cigar->Length;
} else if (cigar->Type == 'I') {
if (position_in_window < WINDOW_SIZE && is_primary)
coverage[position_in_window].indel[strand]++;
position_in_read += cigar->Length;
} else if (cigar->Type == 'D' || cigar->Type == 'M' || cigar->Type == 'N') {
if(cigar->Type == 'D' && position_in_window < WINDOW_SIZE && is_primary)
coverage[position_in_window].indel[strand]++;
for (int j = cigar->Length + position_in_window-1, k = position_in_read+cigar->Length-1; j>=position_in_window && k>=position_in_read && j<WINDOW_SIZE; j--,k--)
coverage[j].total.Increment(strand, sample, sample_manager->num_samples_);
position_in_window += cigar->Length;
if(cigar->Type != 'D')
position_in_read += cigar->Length;
after_match = true;
}
}
}
};
const int IndelAssembly::WINDOW_SIZE;
int main(int argc, char* argv[])
{
printf("tvcassembly %s-%s (%s) - Torrent Variant Caller - Long Indel Assembly\n\n",
IonVersion::GetVersion().c_str(), IonVersion::GetRelease().c_str(), IonVersion::GetGitHash().c_str());
IndelAssemblyArgs parsed_opts(argc, argv);
ReferenceReader reference_reader;
reference_reader.Initialize(parsed_opts.reference);
TargetsManager targets_manager;
targets_manager.Initialize(reference_reader, parsed_opts.target_file);
BamMultiReader bam_reader;
if (!bam_reader.SetExplicitMergeOrder(BamMultiReader::MergeByCoordinate)) {
cerr << "ERROR: Could not set merge order to BamMultiReader::MergeByCoordinate" << endl;
exit(1);
}
if (!bam_reader.Open(parsed_opts.bams)) {
cerr << "ERROR: Could not open input BAM file(s) : " << bam_reader.GetErrorString() << endl;
exit(1);
}
SampleManager sample_manager;
sample_manager.Initialize(bam_reader.GetHeader(), parsed_opts.sample_name, parsed_opts.force_sample_name);
IndelAssembly indel_assembly(&parsed_opts, &reference_reader, &sample_manager);
BamAlignment alignment;
vector<MergedTarget>::iterator current_target = targets_manager.merged.begin();
while (bam_reader.GetNextAlignment(alignment)) {
if (!alignment.IsMapped())
continue;
while (current_target != targets_manager.merged.end() && (alignment.RefID > current_target->chr || (alignment.RefID == current_target->chr && alignment.Position >= current_target->end)))
++current_target;
if (current_target == targets_manager.merged.end())
break;
if (alignment.RefID < current_target->chr || (alignment.RefID == current_target->chr && alignment.GetEndPosition() <= current_target->begin))
continue;
indel_assembly.map(alignment);
}
indel_assembly.onTraversalDone();
bam_reader.Close();
return 0;
}
|