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 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023
|
/*==========================================================================
RazerS - Fast Read Mapping with Controlled Loss Rate
http://www.seqan.de/projects/razers.html
============================================================================
Copyright (C) 2008 by David Weese
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your options) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
==========================================================================*/
#ifndef SEQAN_HEADER_RAZERS_H
#define SEQAN_HEADER_RAZERS_H
#include <iostream>
#include <fstream>
#include <seqan/find.h>
#include <seqan/index.h>
#include <seqan/find/find_swift.h>
#ifdef RAZERS_PARALLEL
#include "tbb/spin_mutex.h"
#endif
namespace SEQAN_NAMESPACE_MAIN
{
//////////////////////////////////////////////////////////////////////////////
// Default options
template < bool _DONT_VERIFY = false, bool _DONT_DUMP_RESULTS = false >
struct RazerSSpec
{
enum { DONT_VERIFY = _DONT_VERIFY }; // omit verifying potential matches
enum { DONT_DUMP_RESULTS = _DONT_DUMP_RESULTS }; // omit dumping results
};
template < typename TSpec = RazerSSpec<> >
struct RazerSOptions
{
// main options
TSpec spec;
bool forward; // compute forward oriented read matches
bool reverse; // compute reverse oriented read matches
double errorRate; // Criteria 1 threshold
unsigned maxHits; // output at most maxHits many matches
unsigned distanceRange; // output only the best, second best, ..., distanceRange best matches
bool purgeAmbiguous; // true..remove reads with more than maxHits best matches, false..keep them
CharString output; // name of result file
int _debugLevel; // level of verbosity
bool printVersion; // print version number
bool hammingOnly; // no indels
int trimLength; // if >0, cut reads to #trimLength characters
// output format options
unsigned outputFormat; // 0..Razer format
// 1..enhanced Fasta
// 2..ELAND format
bool dumpAlignment; // compute and dump the match alignments in the result files
unsigned genomeNaming; // 0..use Fasta id
// 1..enumerate reads beginning with 1
unsigned readNaming; // 0..use Fasta id
// 1..enumerate reads beginning with 1
// 2..use the read sequence (only for short reads!)
unsigned sortOrder; // 0..sort keys: 1. read number, 2. genome position
// 1.. 1. genome pos50ition, 2. read number
unsigned positionFormat; // 0..gap space
// 1..position space
const char *runID; // runID needed for gff output
// filtration parameters
::std::string shape; // shape (e.g. 11111111111)
int threshold; // threshold
int tabooLength; // taboo length
int repeatLength; // repeat length threshold
double abundanceCut; // abundance threshold
// mate-pair parameters
int libraryLength; // offset between two mates
int libraryError; // offset tolerance
unsigned nextMatePairId; // use this id for the next mate-pair
// verification parameters
bool matchN; // false..N is always a mismatch, true..N matches with all
unsigned char compMask[5];
// statistics
__int64 FP; // false positives (threshold reached, no match)
__int64 TP; // true positives (threshold reached, match)
double timeLoadFiles; // time for loading input files
double timeMapReads; // time for mapping reads
double timeDumpResults; // time for dumping the results
#ifdef RAZERS_DIRECT_MAQ_MAPPING
bool maqMapping;
int maxMismatchQualSum;
int mutationRateQual;
int absMaxQualSumErrors;
unsigned artSeedLength;
bool noBelowIdentity;
#endif
#ifdef RAZERS_MICRO_RNA
bool microRNA;
unsigned rnaSeedLength;
bool exactSeed;
#endif
bool lowMemory; // set maximum shape weight to 13 to limit size of q-gram index
bool fastaIdQual; // hidden option for special fasta+quality format we use
// misc
unsigned compactThresh; // compact match array if larger than compactThresh
// multi-threading
#ifdef RAZERS_PARALLEL
typedef ::tbb::spin_mutex TMutex;
TMutex *patternMutex;
TMutex optionsMutex;
TMutex matchMutex;
#endif
RazerSOptions()
{
forward = true;
reverse = true;
errorRate = 0.08;
maxHits = 100;
distanceRange = 0; // disabled
purgeAmbiguous = false;
output = "";
_debugLevel = 0;
printVersion = false;
hammingOnly = false;
trimLength = 0;
outputFormat = 0;
dumpAlignment = false;
genomeNaming = 0;
readNaming = 0;
sortOrder = 0;
positionFormat = 0;
runID = "s"; //
matchN = false;
shape = "11111111111";
threshold = 1;
tabooLength = 1;
repeatLength = 1000;
abundanceCut = 1;
libraryLength = 220;
libraryError = 50;
nextMatePairId = 1;
for (unsigned i = 0; i < 4; ++i)
compMask[i] = 1 << i;
compMask[4] = 0;
compactThresh = 1024;
#ifdef RAZERS_DIRECT_MAQ_MAPPING
maqMapping = false;
maxMismatchQualSum = 70;
mutationRateQual = 30;
artSeedLength = 28; // the "artificial" seed length that is used for mapping quality assignment
// (28bp is maq default)
absMaxQualSumErrors = 100; // maximum for sum of mism qualities in total readlength
noBelowIdentity = false;
#endif
#ifdef RAZERS_MICRO_RNA
microRNA = false;
rnaSeedLength = 16;
exactSeed = true;
#endif
lowMemory = false; // set maximum shape weight to 13 to limit size of q-gram index
fastaIdQual = false;
}
};
struct MicroRNA{};
#ifdef RAZERS_MICRO_RNA
#define RAZERS_EXTENDED_MATCH
#endif
#ifdef RAZERS_DIRECT_MAQ_MAPPING
#define RAZERS_EXTENDED_MATCH
#endif
//////////////////////////////////////////////////////////////////////////////
// Typedefs
// definition of a Read match
template <typename _TGPos>
struct ReadMatch
{
typedef typename _MakeSigned<_TGPos>::Type TGPos;
unsigned gseqNo; // genome seqNo
unsigned rseqNo; // read seqNo
TGPos gBegin; // begin position of the match in the genome
TGPos gEnd; // end position of the match in the genome
#ifdef RAZERS_MATEPAIRS
unsigned pairId; // unique id for the two mate-pair matches (0 if unpaired)
int mateDelta:24; // outer coordinate delta to the other mate
int pairScore:8; // combined score of both mates
#endif
unsigned short editDist; // Levenshtein distance
#ifdef RAZERS_EXTENDED_MATCH
short mScore;
short seedEditDist;
#endif
char orientation; // 'F'..forward strand, 'R'..reverse comp. strand
};
enum RAZERS_ERROR
{
RAZERS_INVALID_OPTIONS = -1,
RAZERS_READS_FAILED = -2,
RAZERS_GENOME_FAILED = -3,
RAZERS_INVALID_SHAPE = -4
};
//////////////////////////////////////////////////////////////////////////////
// Definitions
typedef Dna5String TGenome;
typedef StringSet<TGenome> TGenomeSet;
// typedef Dna5String TRead;
typedef String<Dna5Q> TRead;
#ifdef RAZERS_CONCATREADS
typedef StringSet<TRead, Owner<ConcatDirect<> > > TReadSet;
#else
typedef StringSet<TRead> TReadSet;
#endif
typedef ReadMatch<Difference<TGenome>::Type> TMatch; // a single match
typedef String<TMatch/*, MMap<>*/ > TMatches; // array of matches
template <typename TShape>
struct Cargo< Index<TReadSet, TShape> > {
typedef struct {
double abundanceCut;
int _debugLevel;
} Type;
};
//////////////////////////////////////////////////////////////////////////////
// Memory tuning
#ifdef RAZERS_MEMOPT
template <typename TShape>
struct SAValue< Index<TReadSet, TShape> > {
typedef Pair<
unsigned,
unsigned,
BitCompressed<24, 8> // max. 16M reads of length < 256
> Type;
};
#else
template <typename TShape>
struct SAValue< Index<TReadSet, TShape> > {
typedef Pair<
unsigned, // many reads
unsigned, // of arbitrary length
Compressed
> Type;
};
#endif
template <>
struct Size<Dna5String>
{
typedef unsigned Type;
};
template <typename TShape>
struct Size< Index<TReadSet, Index_QGram<TShape> > >
{
typedef unsigned Type;
};
#ifdef RAZERS_PRUNE_QGRAM_INDEX
//////////////////////////////////////////////////////////////////////////////
// Repeat masker
template <typename TShape>
inline bool _qgramDisableBuckets(Index<TReadSet, Index_QGram<TShape> > &index)
{
typedef Index<TReadSet, Index_QGram<TShape> > TReadIndex;
typedef typename Fibre<TReadIndex, QGram_Dir>::Type TDir;
typedef typename Iterator<TDir, Standard>::Type TDirIterator;
typedef typename Value<TDir>::Type TSize;
TDir &dir = indexDir(index);
bool result = false;
unsigned counter = 0;
TSize thresh = (TSize)(length(index) * cargo(index).abundanceCut);
if (thresh < 100) thresh = 100;
TDirIterator it = begin(dir, Standard());
TDirIterator itEnd = end(dir, Standard());
for (; it != itEnd; ++it)
if (*it > thresh)
{
*it = (TSize)-1;
result = true;
++counter;
}
if (counter > 0 && cargo(index)._debugLevel >= 1)
::std::cerr << "Removed " << counter << " k-mers" << ::std::endl;
return result;
}
#endif
//////////////////////////////////////////////////////////////////////////////
// Load multi-Fasta sequences with or w/o quality values
template <typename TReadSet, typename TNameSet, typename TRazerSOptions>
bool loadReads(
TReadSet &reads,
TNameSet &fastaIDs,
const char *fileName,
TRazerSOptions &options)
{
bool countN = !(options.matchN || options.outputFormat == 1);
#ifdef RAZERS_MICRO_RNA
if(options.microRNA) countN = false;
#endif
MultiFasta multiFasta;
if (!open(multiFasta.concat, fileName, OPEN_RDONLY)) return false;
AutoSeqFormat format;
guessFormat(multiFasta.concat, format);
split(multiFasta, format);
unsigned seqCount = length(multiFasta);
#ifndef RAZERS_CONCATREADS
resize(reads, seqCount, Exact());
#endif
if (options.readNaming == 0)
resize(fastaIDs, seqCount, Exact());
String<Dna5Q> seq;
CharString qual;
unsigned kickoutcount = 0;
for(unsigned i = 0; i < seqCount; ++i)
{
if (options.readNaming == 0
#ifdef RAZERS_DIRECT_MAQ_MAPPING
|| options.fastaIdQual
#endif
)
assignSeqId(fastaIDs[i], multiFasta[i], format); // read Fasta id
assignSeq(seq, multiFasta[i], format); // read Read sequence
assignQual(qual, multiFasta[i], format); // read ascii quality values
#ifdef RAZERS_DIRECT_MAQ_MAPPING
if(options.fastaIdQual)
{
qual = suffix(fastaIDs[i],length(fastaIDs[i])-length(seq));
if(options.readNaming == 0)
fastaIDs[i] = prefix(fastaIDs[i],length(fastaIDs[i])-length(seq));
else clear(fastaIDs[i]);
}
#endif
if (countN)
{
int count = 0;
int cutoffCount = (int)(options.errorRate * length(seq));
for (unsigned j = 0; j < length(seq); ++j)
if (getValue(seq, j) == 'N')
if (++count > cutoffCount)
{
clear(seq);
clear(qual);
++kickoutcount;
break;
}
// low qual. reads are empty to output them and their id later as LQ reads
// if (count > cutoffCount) continue;
}
// store dna and quality together
for (unsigned j = 0; j < length(qual) && j < length(seq); ++j)
assignQualityValue(seq[j], (int)(ordValue(qual[j]) - 33));
/* if(ordValue(seq[j])>3)
setValue(hybridSeq[j],(unsigned int)164); //N=164 such that &3 == 0
else
setValue(hybridSeq[j],(unsigned int)((ordValue(qual[j]) - 33) * 4 + ordValue(seq[j])));
*/
if (options.trimLength > 0 && length(seq) > (unsigned)options.trimLength)
resize(seq, options.trimLength);
#ifdef RAZERS_CONCATREADS
appendValue(reads, seq, Generous());
#else
assign(reads[i], seq, Exact());
#endif
}
#ifdef RAZERS_CONCATREADS
reserve(reads.concat, length(reads.concat), Exact());
#endif
if (options._debugLevel > 1 && kickoutcount > 0)
::std::cerr << "Ignoring " << kickoutcount << " low quality reads.\n";
return (seqCount > 0);
}
//////////////////////////////////////////////////////////////////////////////
// Read the first sequence of a multi-sequence file
// and return its length
inline int estimateReadLength(char const *fileName)
{
MultiFasta multiFasta;
if (!open(multiFasta.concat, fileName, OPEN_RDONLY)) // open the whole file
return RAZERS_READS_FAILED;
AutoSeqFormat format;
guessFormat(multiFasta.concat, format); // guess file format
split(multiFasta, format); // divide into single sequences
if (length(multiFasta) == 0)
return 0;
Dna5String firstRead;
assignSeq(firstRead, multiFasta[0], format); // read the first sequence
return length(firstRead);
}
/*
//////////////////////////////////////////////////////////////////////////////
// Load multi-Fasta sequences
template <typename TGenomeSet>
bool loadGenomes(TGenomeSet &genomes, const char *fileName)
{
MultiFasta multiFasta;
if (!open(multiFasta.concat, fileName, OPEN_RDONLY)) return false;
split(multiFasta, Fasta());
unsigned seqCount = length(multiFasta);
resize(genomes, seqCount, Exact());
for(unsigned i = 0; i < seqCount; ++i)
assignSeq(genomes[i], multiFasta[i], Fasta()); // read Genome sequence
return (seqCount > 0);
}*/
//////////////////////////////////////////////////////////////////////////////
// Load multi-Fasta sequences from multiple files
template <typename TGenomeSet>
bool loadGenomes(TGenomeSet &genomes, StringSet<CharString> &fileNameList)
{
unsigned gSeqNo = 0;
unsigned filecount = 0;
while(filecount < length(fileNameList))
{
MultiFasta multiFasta;
if (!open(multiFasta.concat, toCString(fileNameList[filecount]), OPEN_RDONLY)) return false;
split(multiFasta, Fasta());
unsigned seqCount = length(multiFasta);
if(length(genomes) < gSeqNo+seqCount)
resize(genomes,gSeqNo+seqCount);
for(unsigned i = 0; i < seqCount; ++i)
assignSeq(genomes[gSeqNo+i], multiFasta[i], Fasta()); // read Genome sequence
gSeqNo += seqCount;
++filecount;
}
resize(genomes,gSeqNo);
return (gSeqNo > 0);
}
#ifdef RAZERS_MICRO_RNA
template <typename TReadMatch>
struct LessRNoGPos : public ::std::binary_function < TReadMatch, TReadMatch, bool >
{
inline bool operator() (TReadMatch const &a, TReadMatch const &b) const
{
// read number
if (a.rseqNo < b.rseqNo) return true;
if (a.rseqNo > b.rseqNo) return false;
// genome position and orientation
if (a.gseqNo < b.gseqNo) return true;
if (a.gseqNo > b.gseqNo) return false;
if (a.gBegin < b.gBegin) return true;
if (a.gBegin > b.gBegin) return false;
if (a.orientation < b.orientation) return true;
if (a.orientation > b.orientation) return false;
if(a.editDist < b.editDist) return true;
if(a.editDist > b.editDist) return false;
return (a.mScore > b.mScore);
}
};
template <typename TReadMatch>
struct LessRNoEdistHLen : public ::std::binary_function < TReadMatch, TReadMatch, bool >
{
inline bool operator() (TReadMatch const &a, TReadMatch const &b) const
{
// read number
if (a.rseqNo < b.rseqNo) return true;
if (a.rseqNo > b.rseqNo) return false;
if(a.editDist < b.editDist) return true;
if(a.editDist > b.editDist) return false;
return (a.mScore > b.mScore);
}
};
#else
template <typename TReadMatch>
struct LessRNoGPos : public ::std::binary_function < TReadMatch, TReadMatch, bool >
{
inline bool operator() (TReadMatch const &a, TReadMatch const &b) const
{
// read number
if (a.rseqNo < b.rseqNo) return true;
if (a.rseqNo > b.rseqNo) return false;
// genome position and orientation
if (a.gseqNo < b.gseqNo) return true;
if (a.gseqNo > b.gseqNo) return false;
if (a.gBegin < b.gBegin) return true;
if (a.gBegin > b.gBegin) return false;
if (a.orientation < b.orientation) return true;
if (a.orientation > b.orientation) return false;
// quality
#ifdef RAZERS_MATEPAIRS
return a.pairScore > b.pairScore;
#else
return a.editDist < b.editDist;
#endif
}
};
#endif
// ... to sort matches and remove duplicates with equal gEnd
template <typename TReadMatch>
struct LessRNoGEndPos : public ::std::binary_function < TReadMatch, TReadMatch, bool >
{
inline bool operator() (TReadMatch const &a, TReadMatch const &b) const
{
// read number
if (a.rseqNo < b.rseqNo) return true;
if (a.rseqNo > b.rseqNo) return false;
// genome position and orientation
if (a.gseqNo < b.gseqNo) return true;
if (a.gseqNo > b.gseqNo) return false;
if (a.gEnd < b.gEnd) return true;
if (a.gEnd > b.gEnd) return false;
if (a.orientation < b.orientation) return true;
if (a.orientation > b.orientation) return false;
// quality
#ifdef RAZERS_MATEPAIRS
return a.pairScore > b.pairScore;
#else
return a.editDist < b.editDist;
#endif
}
};
template <typename TReadMatch>
struct LessErrors : public ::std::binary_function < TReadMatch, TReadMatch, bool >
{
inline bool operator() (TReadMatch const &a, TReadMatch const &b) const
{
// read number
if (a.rseqNo < b.rseqNo) return true;
if (a.rseqNo > b.rseqNo) return false;
// quality
#ifdef RAZERS_MATEPAIRS
return a.pairScore > b.pairScore;
#else
return a.editDist < b.editDist;
#endif
}
};
#ifdef RAZERS_DIRECT_MAQ_MAPPING
struct QualityBasedScoring{};
template <typename TReadMatch>
struct LessRNoMQ : public ::std::binary_function < TReadMatch, TReadMatch, bool >
{
inline bool operator() (TReadMatch const &a, TReadMatch const &b) const
{
// read number
if (a.rseqNo < b.rseqNo) return true;
if (a.rseqNo > b.rseqNo) return false;
// quality
if (a.mScore < b.mScore) return true; // sum of quality values of mismatches (the smaller the better)
if (a.mScore > b.mScore) return false;
return (a.editDist < b.editDist); // seedEditDist?
// genome position and orientation
/* if (a.gseqNo < b.gseqNo) return true;
if (a.gseqNo > b.gseqNo) return false;
if (a.gBegin < b.gBegin) return true;
if (a.gBegin > b.gBegin) return false;
if (a.orientation < b.orientation) return true;
if (a.orientation > b.orientation) return false;
*/
}
};
#endif
//////////////////////////////////////////////////////////////////////////////
// Remove duplicate matches and leave at most maxHits many distanceRange
// best matches per read
template < typename TMatches >
void maskDuplicates(TMatches &matches)
{
typedef typename Value<TMatches>::Type TMatch;
typedef typename Iterator<TMatches, Standard>::Type TIterator;
//////////////////////////////////////////////////////////////////////////////
// remove matches with equal ends
::std::sort(
begin(matches, Standard()),
end(matches, Standard()),
LessRNoGEndPos<TMatch>());
typename TMatch::TGPos gBegin = -1;
typename TMatch::TGPos gEnd = -1;
unsigned gseqNo = -1;
unsigned readNo = -1;
char orientation = '-';
TIterator it = begin(matches, Standard());
TIterator itEnd = end(matches, Standard());
for (; it != itEnd; ++it)
{
#ifdef RAZERS_MATEPAIRS
if ((*it).pairId != 0) continue;
#endif
if (gEnd == (*it).gEnd && orientation == (*it).orientation &&
gseqNo == (*it).gseqNo && readNo == (*it).rseqNo)
{
(*it).orientation = '-';
continue;
}
readNo = (*it).rseqNo;
gseqNo = (*it).gseqNo;
gEnd = (*it).gEnd;
orientation = (*it).orientation;
}
//////////////////////////////////////////////////////////////////////////////
// remove matches with equal begins
::std::sort(
begin(matches, Standard()),
end(matches, Standard()),
LessRNoGPos<TMatch>());
orientation = '-';
it = begin(matches, Standard());
itEnd = end(matches, Standard());
for (; it != itEnd; ++it)
{
if ((*it).orientation == '-'
#ifdef RAZERS_MATEPAIRS
|| ((*it).pairId != 0)
#endif
) continue;
if (gBegin == (*it).gBegin && readNo == (*it).rseqNo &&
gseqNo == (*it).gseqNo && orientation == (*it).orientation)
{
(*it).orientation = '-';
continue;
}
readNo = (*it).rseqNo;
gseqNo = (*it).gseqNo;
gBegin = (*it).gBegin;
orientation = (*it).orientation;
}
::std::sort(
begin(matches, Standard()),
end(matches, Standard()),
LessErrors<TMatch>());
}
//////////////////////////////////////////////////////////////////////////////
// Count matches for each number of errors
template < typename TMatches, typename TCounts >
void countMatches(TMatches &matches, TCounts &cnt)
{
typedef typename Value<TMatches>::Type TMatch;
typedef typename Iterator<TMatches, Standard>::Type TIterator;
typedef typename Value<TCounts>::Type TRow;
typedef typename Value<TRow>::Type TValue;
TIterator it = begin(matches, Standard());
TIterator itEnd = end(matches, Standard());
unsigned readNo = -1;
short editDist = -1;
__int64 count = 0;
__int64 maxVal = SupremumValue<TValue>::VALUE;
for (; it != itEnd; ++it)
{
if ((*it).orientation == '-') continue;
if (readNo == (*it).rseqNo && editDist == (*it).editDist)
++count;
else
{
if (readNo != (unsigned)-1 && (unsigned)editDist < length(cnt))
cnt[editDist][readNo] = (maxVal < count)? maxVal : count;
readNo = (*it).rseqNo;
editDist = (*it).editDist;
count = 1;
}
}
if (readNo != (unsigned)-1 && (unsigned)editDist < length(cnt))
cnt[editDist][readNo] = count;
}
//////////////////////////////////////////////////////////////////////////////
template < typename TReadNo, typename TMaxErrors >
inline void
setMaxErrors(Nothing &, TReadNo, TMaxErrors)
{
}
template < typename TSwift, typename TReadNo, typename TMaxErrors >
inline void
setMaxErrors(TSwift &swift, TReadNo readNo, TMaxErrors maxErrors)
{
int minT = _qgramLemma(swift, readNo, maxErrors);
if (minT > 1)
{
// ::std::cout<<" read:"<<readNo<<" newThresh:"<<minT;
setMinThreshold(swift, readNo, (unsigned)minT);
}
}
//////////////////////////////////////////////////////////////////////////////
// Remove low quality matches
template < typename TMatches, typename TCounts, typename TSpec, typename TSwift >
void compactMatches(TMatches &matches, TCounts &
#ifdef RAZERS_DIRECT_MAQ_MAPPING
cnts
#endif
, RazerSOptions<TSpec> &options,
TSwift &
#if defined RAZERS_DIRECT_MAQ_MAPPING || defined RAZERS_MASK_READS
swift
#endif
)
{
#ifdef RAZERS_DIRECT_MAQ_MAPPING
if(options.maqMapping) compactMatches(matches, cnts,options,swift,true);
#endif
typedef typename Value<TMatches>::Type TMatch;
typedef typename Iterator<TMatches, Standard>::Type TIterator;
#ifdef RAZERS_MICRO_RNA
if(options.microRNA)
::std::sort(
begin(matches, Standard()),
end(matches, Standard()),
LessRNoEdistHLen<TMatch>());
int bestMScore = 0;
#endif
unsigned readNo = -1;
unsigned hitCount = 0;
unsigned hitCountCutOff = options.maxHits;
#ifdef RAZERS_MICRO_RNA
if(options.microRNA && options.purgeAmbiguous)
++hitCountCutOff; // we keep one more match than we actually want, so we can later decide
// whether the read mapped more than maxhits times
#endif
int editDistCutOff = SupremumValue<int>::VALUE;
TIterator it = begin(matches, Standard());
TIterator itEnd = end(matches, Standard());
TIterator dit = it;
TIterator ditBeg = it;
for (; it != itEnd; ++it)
{
if ((*it).orientation == '-') continue;
if (readNo == (*it).rseqNo
#ifdef RAZERS_MATEPAIRS
&& (*it).pairId == 0
#endif
)
{
if ((*it).editDist >= editDistCutOff) continue;
#ifdef RAZERS_MICRO_RNA
if ( (*it).mScore < bestMScore) continue;
#endif
if (++hitCount >= hitCountCutOff)
{
#ifdef RAZERS_MASK_READS
if (hitCount == hitCountCutOff)
{
// we have enough, now look for better matches
int maxErrors = (*it).editDist - 1;
if (options.purgeAmbiguous && (options.distanceRange == 0 || (*it).editDist < options.distanceRange))
maxErrors = -1;
setMaxErrors(swift, readNo, maxErrors);
if (maxErrors == -1 && options._debugLevel >= 2)
::std::cerr << "(read #" << readNo << " disabled)";
if (options.purgeAmbiguous && (options.distanceRange == 0 || (*it).editDist < options.distanceRange))
dit = ditBeg;
}
#endif
continue;
}
}
else
{
readNo = (*it).rseqNo;
hitCount = 0;
if (options.distanceRange > 0)
editDistCutOff = (*it).editDist + options.distanceRange;
#ifdef RAZERS_MICRO_RNA
bestMScore = (*it).mScore;
#endif
ditBeg = dit;
}
*dit = *it;
++dit;
}
resize(matches, dit - begin(matches, Standard()));
}
#ifdef RAZERS_DIRECT_MAQ_MAPPING
//////////////////////////////////////////////////////////////////////////////
// Remove low quality matches
template < typename TMatches, typename TCounts, typename TSpec, typename TSwift >
void compactMatches(TMatches &matches, TCounts &cnts, RazerSOptions<TSpec> &, TSwift &, bool dontCountFirstTwo)
{
typedef typename Value<TMatches>::Type TMatch;
typedef typename Iterator<TMatches, Standard>::Type TIterator;
::std::sort(
begin(matches, Standard()),
end(matches, Standard()),
LessRNoMQ<TMatch>());
unsigned readNo = -1;
TIterator it = begin(matches, Standard());
TIterator itEnd = end(matches, Standard());
TIterator dit = it;
//number of errors may not exceed 31!
bool second = true;
for (; it != itEnd; ++it)
{
if ((*it).orientation == '-') continue;
if (readNo == (*it).rseqNo)
{
//second best match
if (second)
{
second = false;
if((cnts[1][(*it).rseqNo] & 31) > (*it).editDist)
{
//this second best match is better than any second best match before
cnts[1][(*it).rseqNo] = (*it).editDist; // second best dist is this editDist
// count is 0 (will be updated if countFirstTwo)
}
if(!dontCountFirstTwo)
if((cnts[1][(*it).rseqNo]>>5) != 2047) cnts[1][(*it).rseqNo] += 32;
}
else
{
if ((*it).editDist <= (cnts[0][(*it).rseqNo] & 31) )
if(cnts[0][(*it).rseqNo]>>5 != 2047)
cnts[0][(*it).rseqNo] +=32;
if ((*it).editDist <= (cnts[1][(*it).rseqNo] & 31) )
if((cnts[1][(*it).rseqNo]>>5) != 2047)
cnts[1][(*it).rseqNo] +=32;
continue;
}
} else
{ //best match
second = true;
readNo = (*it).rseqNo;
//cnts has 16bits, 11:5 for count:dist
if((cnts[0][(*it).rseqNo] & 31) > (*it).editDist)
{
//this match is better than any match before
cnts[1][(*it).rseqNo] = cnts[0][(*it).rseqNo]; // best before is now second best
// (count will be updated when match is removed)
cnts[0][(*it).rseqNo] = (*it).editDist; // best dist is this editDist
// count is 0 (will be updated if countFirstTwo)
}
if(!dontCountFirstTwo)
if((cnts[0][(*it).rseqNo]>>5) != 2047) cnts[0][(*it).rseqNo] += 32; // shift 5 to the right, add 1, shift 5 to the left, and keep count
}
*dit = *it;
++dit;
}
resize(matches, dit - begin(matches, Standard()));
}
#endif
#ifdef RAZERS_MICRO_RNA
template < typename TMatches, typename TSpec >
void purgeAmbiguousRnaMatches(TMatches &matches, RazerSOptions<TSpec> &options)
{
typedef typename Value<TMatches>::Type TMatch;
typedef typename Iterator<TMatches, Standard>::Type TIterator;
::std::sort(begin(matches, Standard()),end(matches, Standard()),LessRNoEdistHLen<TMatch>());
int bestMScore = 0;
unsigned readNo = -1;
unsigned hitCount = 0;
unsigned hitCountCutOff = options.maxHits;
int editDistCutOff = SupremumValue<int>::VALUE;
TIterator it = begin(matches, Standard());
TIterator itEnd = end(matches, Standard());
TIterator dit = it;
TIterator ditBeg = it;
for (; it != itEnd; ++it)
{
if ((*it).orientation == '-') continue;
if (readNo == (*it).rseqNo)
{
if ((*it).editDist >= editDistCutOff) continue;
if ( (*it).mScore < bestMScore) continue;
if (++hitCount >= hitCountCutOff)
{
if (hitCount == hitCountCutOff)
dit = ditBeg;
continue;
}
}
else
{
readNo = (*it).rseqNo;
hitCount = 0;
if (options.distanceRange > 0)
editDistCutOff = (*it).editDist + options.distanceRange;
bestMScore = (*it).mScore;
ditBeg = dit;
}
*dit = *it;
++dit;
}
resize(matches, dit - begin(matches, Standard()));
}
//////////////////////////////////////////////////////////////////////////////
// Hamming verification recording sum of mismatching qualities in m.mScore
template <
typename TMatch,
typename TGenome,
typename TReadSet,
typename TSpec >
inline bool
matchVerify(
TMatch &m, // resulting match
Segment<TGenome, InfixSegment> inf, // potential match genome region
unsigned rseqNo, // read number
TReadSet &readSet, // reads
RazerSOptions<TSpec> const &options, // RazerS options
MicroRNA) // MaqMapping
{
typedef Segment<TGenome, InfixSegment> TGenomeInfix;
typedef typename Value<TReadSet>::Type const TRead;
typedef typename Iterator<TGenomeInfix, Standard>::Type TGenomeIterator;
typedef typename Iterator<TRead, Standard>::Type TReadIterator;
unsigned ndlLength = sequenceLength(rseqNo, readSet);
if (length(inf) < ndlLength) return false;
// verify
TRead &read = readSet[rseqNo];
TReadIterator ritBeg = begin(read, Standard());
TReadIterator ritEnd = end(read, Standard());
TGenomeIterator git = begin(inf, Standard());
TGenomeIterator gitEnd = end(inf, Standard()) - (ndlLength - 1);
// this is max number of errors the seed should have
unsigned maxErrorsSeed = (unsigned)(options.rnaSeedLength * options.errorRate);
unsigned minSeedErrors = maxErrorsSeed + 1;
unsigned bestHitLength = 0;
for (; git < gitEnd; ++git)
{
bool hit = true;
unsigned hitLength = 0;
unsigned count = 0;
unsigned seedErrors = 0;
TGenomeIterator g = git; //maq would count errors in the first 28bp only (at least initially. not for output)
for(TReadIterator r = ritBeg; r != ritEnd; ++r, ++g)
{
if ((options.compMask[ordValue(*g)] & options.compMask[ordValue(*r)]) == 0)
{
if (count < options.rnaSeedLength) // the maq (28bp-)seed
{
if(++seedErrors > maxErrorsSeed)
{
hit = false;
break;
}
}
else
break;
}
++count;
}
if (hit) hitLength = count;
if (hitLength > bestHitLength ) //simply take the longest hit
{
minSeedErrors = seedErrors;
bestHitLength = hitLength;
m.gBegin = git - begin(host(inf), Standard());
}
}
// std::cout << "options.absMaxQualSumErrors" << options.absMaxQualSumErrors << std::endl;
// std::cout << "maxSeedErrors" << maxErrorsSeed << std::endl;
// std::cout << "minErrors" << minSeedErrors << std::endl;
// if(derBesgte) ::std::cout << minErrors <<"minErrors\n";
if (minSeedErrors > maxErrorsSeed) return false;
m.gEnd = m.gBegin + bestHitLength;
m.editDist = minSeedErrors; // errors in seed or total number of errors?
m.mScore = bestHitLength;
m.seedEditDist = minSeedErrors;
return true;
}
#endif
//////////////////////////////////////////////////////////////////////////////
// Hamming verification
template <
typename TMatch,
typename TGenome,
typename TReadSet,
typename TMyersPatterns,
typename TSpec >
inline bool
matchVerify(
TMatch &m, // resulting match
Segment<TGenome, InfixSegment> inf, // potential match genome region
unsigned rseqNo, // read number
TReadSet &readSet, // reads
TMyersPatterns const &, // MyersBitVector preprocessing data
RazerSOptions<TSpec> const &options, // RazerS options
SwiftSemiGlobalHamming) // Hamming only
{
#ifdef RAZERS_DIRECT_MAQ_MAPPING
if(options.maqMapping)
return matchVerify(m,inf,rseqNo,readSet,options,QualityBasedScoring());
#endif
#ifdef RAZERS_MICRO_RNA
if(options.microRNA)
return matchVerify(m,inf,rseqNo,readSet,options,MicroRNA());
#endif
typedef Segment<TGenome, InfixSegment> TGenomeInfix;
typedef typename Value<TReadSet>::Type const TRead;
typedef typename Iterator<TGenomeInfix, Standard>::Type TGenomeIterator;
typedef typename Iterator<TRead, Standard>::Type TReadIterator;
#ifdef RAZERS_DEBUG
::std::cout<<"Verify: "<<::std::endl;
::std::cout<<"Genome: "<<inf<<"\t" << beginPosition(inf) << "," << endPosition(inf) << ::std::endl;
::std::cout<<"Read: "<<readSet[rseqNo] << ::std::endl;
#endif
unsigned ndlLength = sequenceLength(rseqNo, readSet);
if (length(inf) < ndlLength) return false;
// verify
TRead &read = readSet[rseqNo];
TReadIterator ritBeg = begin(read, Standard());
TReadIterator ritEnd = end(read, Standard());
TGenomeIterator git = begin(inf, Standard());
TGenomeIterator gitEnd = end(inf, Standard()) - (ndlLength - 1);
unsigned maxErrors = (unsigned)(ndlLength * options.errorRate);
unsigned minErrors = maxErrors + 1;
for (; git < gitEnd; ++git)
{
unsigned errors = 0;
TGenomeIterator g = git;
for(TReadIterator r = ritBeg; r != ritEnd; ++r, ++g)
if ((options.compMask[ordValue(*g)] & options.compMask[ordValue(*r)]) == 0)
if (++errors > maxErrors)
break;
if (minErrors > errors)
{
minErrors = errors;
m.gBegin = git - begin(host(inf), Standard());
}
}
if (minErrors > maxErrors) return false;
m.gEnd = m.gBegin + ndlLength;
m.editDist = minErrors;
return true;
}
//////////////////////////////////////////////////////////////////////////////
// Edit distance verification
template <
typename TMatch,
typename TGenome,
typename TReadSet,
typename TMyersPatterns,
typename TSpec >
inline bool
matchVerify(
TMatch &m, // resulting match
Segment<TGenome, InfixSegment> inf, // potential match genome region
unsigned rseqNo, // read number
TReadSet &readSet, // reads
TMyersPatterns &forwardPatterns, // MyersBitVector preprocessing data
RazerSOptions<TSpec> const &options, // RazerS options
SwiftSemiGlobal) // Swift specialization
{
typedef Segment<TGenome, InfixSegment> TGenomeInfix;
typedef typename Value<TReadSet>::Type TRead;
// find read match end
typedef Finder<TGenomeInfix> TMyersFinder;
typedef typename Value<TMyersPatterns>::Type TMyersPattern;
// find read match begin
typedef ModifiedString<TGenomeInfix, ModReverse> TGenomeInfixRev;
typedef ModifiedString<TRead, ModReverse> TReadRev;
typedef Finder<TGenomeInfixRev> TMyersFinderRev;
typedef Pattern<TReadRev, MyersUkkonenGlobal> TMyersPatternRev;
TMyersFinder myersFinder(inf);
TMyersPattern &myersPattern = forwardPatterns[rseqNo];
#ifdef RAZERS_DEBUG
::std::cout<<"Verify: "<<::std::endl;
::std::cout<<"Genome: "<<inf<<"\t" << beginPosition(inf) << "," << endPosition(inf) << ::std::endl;
::std::cout<<"Read: "<<readSet[rseqNo]<<::std::endl;
#endif
unsigned ndlLength = sequenceLength(rseqNo, readSet);
int maxScore = InfimumValue<int>::VALUE;
int minScore = -(int)(ndlLength * options.errorRate);
TMyersFinder maxPos;
// find end of best semi-global alignment
while (find(myersFinder, myersPattern, minScore))
if (maxScore <= getScore(myersPattern))
{
maxScore = getScore(myersPattern);
maxPos = myersFinder;
}
if (maxScore < minScore) return false;
m.editDist = (unsigned)-maxScore;
setEndPosition(inf, m.gEnd = (beginPosition(inf) + position(maxPos) + 1));
// limit the beginning to needle length plus errors (== -maxScore)
if (length(inf) > ndlLength - maxScore)
setBeginPosition(inf, endPosition(inf) - ndlLength + maxScore);
// find beginning of best semi-global alignment
TGenomeInfixRev infRev(inf);
TReadRev readRev(readSet[rseqNo]);
TMyersFinderRev myersFinderRev(infRev);
TMyersPatternRev myersPatternRev(readRev);
_patternMatchNOfPattern(myersPatternRev, options.matchN);
_patternMatchNOfFinder(myersPatternRev, options.matchN);
while (find(myersFinderRev, myersPatternRev, maxScore))
m.gBegin = m.gEnd - (position(myersFinderRev) + 1);
return true;
}
#ifdef RAZERS_DIRECT_MAQ_MAPPING
//////////////////////////////////////////////////////////////////////////////
// Hamming verification recording sum of mismatching qualities in m.mScore
template <
typename TMatch,
typename TGenome,
typename TReadSet,
typename TSpec >
inline bool
matchVerify(
TMatch &m, // resulting match
Segment<TGenome, InfixSegment> inf, // potential match genome region
unsigned rseqNo, // read number
TReadSet &readSet, // reads
RazerSOptions<TSpec> const &options, // RazerS options
QualityBasedScoring) // MaqMapping
{
typedef Segment<TGenome, InfixSegment> TGenomeInfix;
typedef typename Value<TReadSet>::Type const TRead;
typedef typename Iterator<TGenomeInfix, Standard>::Type TGenomeIterator;
typedef typename Iterator<TRead, Standard>::Type TReadIterator;
// #ifdef RAZERS_DEBUG
// cout<<"Verify: "<<::std::endl;
// cout<<"Genome: "<<inf<<"\t" << beginPosition(inf) << "," << endPosition(inf) << ::std::endl;
// cout<<"Read: "<<host(myersPattern)<<::std::endl;
// #endif
// bool derBesgte = false;
//if(rseqNo == 2) derBesgte = true;
// if(derBesgte) ::std::cout << "der besagte\n";
unsigned ndlLength = sequenceLength(rseqNo, readSet);
if (length(inf) < ndlLength) return false;
// verify
TRead &read = readSet[rseqNo];
TReadIterator ritBeg = begin(read, Standard());
TReadIterator ritEnd = end(read, Standard());
TGenomeIterator git = begin(inf, Standard());
TGenomeIterator gitEnd = end(inf, Standard()) - (ndlLength - 1);
TGenomeIterator bestIt = begin(inf, Standard());
// this is max number of errors the 28bp 'seed' should have
//assuming that maxErrors-1 matches can be found with 100% SN
unsigned maxErrorsSeed = (unsigned)(options.artSeedLength * options.errorRate) + 1;
unsigned maxErrorsTotal = (unsigned)(ndlLength * 0.25); //options.maxErrorRate);
unsigned minErrors = maxErrorsTotal + 1;
int minQualSumErrors = options.absMaxQualSumErrors + 10;
unsigned minSeedErrors = maxErrorsSeed + 1;
for (; git < gitEnd; ++git)
{
bool hit = true;
unsigned errors = 0;
unsigned count = 0;
unsigned seedErrors = 0;
int qualSumErrors = 0;
TGenomeIterator g = git; //maq would count errors in the first 28bp only (at least initially. not for output)
for(TReadIterator r = ritBeg; r != ritEnd; ++r, ++g)
{
if ((options.compMask[ordValue(*g)] & options.compMask[ordValue(*r)]) == 0)
{
// ::std::cout << count << "<-";
if (++errors > maxErrorsTotal)
{
hit = false;
break;
}
//int qualityValue = (int)((unsigned char)*r >> 3);
//qualSumErrors += (qualityValue < options.mutationRateQual) ? qualityValue : options.mutationRateQual;
qualSumErrors += (getQualityValue(*r) < options.mutationRateQual) ? getQualityValue(*r) : options.mutationRateQual;
if(qualSumErrors > options.absMaxQualSumErrors || qualSumErrors > minQualSumErrors)
{
hit = false;
break;
}
if (count < options.artSeedLength) // the maq (28bp-)seed
{
if(++seedErrors > maxErrorsSeed)
{
hit = false;
break;
}
if(qualSumErrors > options.maxMismatchQualSum)
{
hit = false;
break;
}// discard match, if 'seed' is bad (later calculations are done with the quality sum over the whole read)
}
}
++count;
}
if (hit && (qualSumErrors < minQualSumErrors /*&& seedErrors <=maxErrorsSeed*/) ) //oder (seedErrors < minSeedErrors)
{
minErrors = errors;
minSeedErrors = seedErrors;
minQualSumErrors = qualSumErrors;
m.gBegin = git - begin(host(inf), Standard());
bestIt = git;
}
}
if (minQualSumErrors > options.absMaxQualSumErrors || minSeedErrors > maxErrorsSeed || minErrors > maxErrorsTotal) return false;
m.gEnd = m.gBegin + ndlLength;
m.editDist = minErrors; // errors in seed or total number of errors?
m.mScore = minQualSumErrors;
m.seedEditDist = minSeedErrors;
return true;
}
//////////////////////////////////////////////////////////////////////////////
// Edit distance verification
template <
typename TMatch,
typename TGenome,
typename TReadSet,
typename TMyersPatterns,
typename TSpec >
inline bool
matchVerify(
TMatch &m, // resulting match
Segment<TGenome, InfixSegment> inf, // potential match genome region
unsigned rseqNo, // read number
TReadSet &readSet, // reads
TMyersPatterns const & pat, // MyersBitVector preprocessing data
RazerSOptions<TSpec> const &options, // RazerS options
SwiftSemiGlobal const &swiftsemi, // Hamming only
QualityBasedScoring) // Swift specialization
{
//if(!options.maqMapping)
return matchVerify(m,inf,rseqNo,readSet,pat,options,swiftsemi);
//else
// return matchVerify(m,inf,rseqNo,readSet,pat,options,swiftsemi); // todo!
}
#endif
#ifndef RAZERS_PARALLEL
//////////////////////////////////////////////////////////////////////////////
// Find read matches in one genome sequence
template <
typename TMatches,
typename TGenome,
typename TReadIndex,
typename TSwiftSpec,
typename TVerifier,
typename TCounts,
typename TSpec >
void mapSingleReads(
TMatches &matches, // resulting matches
TGenome &genome, // genome ...
unsigned gseqNo, // ... and its sequence number
Pattern<TReadIndex, Swift<TSwiftSpec> > &swiftPattern,
TVerifier &forwardPatterns,
TCounts & cnts,
char orientation, // q-gram index of reads
RazerSOptions<TSpec> &options)
{
typedef typename Fibre<TReadIndex, Fibre_Text>::Type TReadSet;
typedef typename Size<TGenome>::Type TSize;
typedef typename Value<TMatches>::Type TMatch;
// FILTRATION
typedef Finder<TGenome, Swift<TSwiftSpec> > TSwiftFinder;
typedef Pattern<TReadIndex, Swift<TSwiftSpec> > TSwiftPattern;
// iterate all genomic sequences
if (options._debugLevel >= 1)
{
::std::cerr << ::std::endl << "Process genome seq #" << gseqNo;
if (orientation == 'F')
::std::cerr << "[fwd]";
else
::std::cerr << "[rev]";
}
TReadSet &readSet = host(host(swiftPattern));
TSwiftFinder swiftFinder(genome, options.repeatLength, 1);
TMatch m = { // to supress uninitialized warnings
0, 0, 0, 0,
#ifdef RAZERS_MATEPAIRS
0, 0, 0,
#endif
0,
#ifdef RAZERS_EXTENDED_MATCH
0, 0,
#endif
0
};
// iterate all verification regions returned by SWIFT
#ifdef RAZERS_MICRO_RNA
while (find(swiftFinder, swiftPattern, 0.2, options._debugLevel))
#else
while (find(swiftFinder, swiftPattern, options.errorRate, options._debugLevel))
#endif
{
unsigned rseqNo = (*swiftFinder.curHit).ndlSeqNo;
if (!options.spec.DONT_VERIFY &&
matchVerify(m, range(swiftFinder, genome), rseqNo, readSet, forwardPatterns, options, TSwiftSpec()))
{
// transform coordinates to the forward strand
if (orientation == 'R')
{
TSize gLength = length(genome);
TSize temp = m.gBegin;
m.gBegin = gLength - m.gEnd;
m.gEnd = gLength - temp;
}
m.gseqNo = gseqNo;
m.rseqNo = rseqNo;
m.orientation = orientation;
#ifdef RAZERS_MATEPAIRS
m.pairId = 0;
m.pairScore = 0 - m.editDist;
#endif
if (!options.spec.DONT_DUMP_RESULTS)
{
appendValue(matches, m, Generous());
if (length(matches) > options.compactThresh)
{
typename Size<TMatches>::Type oldSize = length(matches);
maskDuplicates(matches); // overlapping parallelograms cause duplicates
#ifdef RAZERS_DIRECT_MAQ_MAPPING
if(options.maqMapping)
compactMatches(matches, cnts, options, swiftPattern, true);
else
#endif
compactMatches(matches, cnts, options, swiftPattern);
options.compactThresh += (options.compactThresh >> 1);
if (options._debugLevel >= 2)
::std::cerr << '(' << oldSize - length(matches) << " matches removed)";
}
}
++options.TP;
// ::std::cerr << "\"" << range(swiftFinder, genomeInf) << "\" ";
// ::std::cerr << hstkPos << " + ";
// ::std::cerr << ::std::endl;
} else {
++options.FP;
// ::std::cerr << "\"" << range(swiftFinder, genomeInf) << "\" \"" << range(swiftPattern) << "\" ";
// ::std::cerr << rseqNo << " : ";
// ::std::cerr << hstkPos << " + ";
// ::std::cerr << bucketWidth << " " << TP << ::std::endl;
}
}
}
#endif
#ifdef RAZERS_MICRO_RNA
// multiple sequences
template <
typename TSA,
typename TString,
typename TSpec,
typename TShape,
typename TDir,
typename TValue,
typename TWithConstraints
>
inline void
_qgramFillSuffixArray(
TSA &sa,
StringSet<TString, TSpec> const &stringSet,
TShape &shape,
TDir &dir,
TWithConstraints const,
TValue prefixLen)
{
SEQAN_CHECKPOINT
typedef typename Iterator<TString const, Standard>::Type TIterator;
typedef typename Value<TDir>::Type TSize;
typedef typename Value<TShape>::Type THash;
for(unsigned seqNo = 0; seqNo < length(stringSet); ++seqNo)
{
TString const &sequence = value(stringSet, seqNo);
if (length(sequence) < length(shape)) continue;
TSize num_qgrams = prefixLen - length(shape) + 1;
typename Value<TSA>::Type localPos;
assignValueI1(localPos, seqNo);
assignValueI2(localPos, 0);
TIterator itText = begin(sequence, Standard());
if (TWithConstraints::VALUE) {
THash h = hash(shape, itText) + 1; // first hash
if (dir[h] != (TSize)-1) sa[dir[h]++] = localPos; // if bucket is enabled
} else
sa[dir[hash(shape, itText) + 1]++] = localPos; // first hash
for(TSize i = 1; i < num_qgrams; ++i)
{
++itText;
assignValueI2(localPos, i);
if (TWithConstraints::VALUE) {
THash h = hashNext(shape, itText) + 1; // next hash
if (dir[h] != (TSize)-1) sa[dir[h]++] = localPos; // if bucket is enabled
} else
sa[dir[hashNext(shape, itText) + 1]++] = localPos; // next hash
}
}
}
template < typename TDir, typename TString, typename TSpec, typename TShape, typename TValue >
inline void
_qgramCountQGrams(TDir &dir, StringSet<TString, TSpec> const &stringSet, TShape &shape, TValue prefixLen)
{
SEQAN_CHECKPOINT
typedef typename Iterator<TString const, Standard>::Type TIterator;
typedef typename Value<TDir>::Type TSize;
for(unsigned seqNo = 0; seqNo < length(stringSet); ++seqNo)
{
TString const &sequence = value(stringSet, seqNo);
if (length(sequence) < length(shape)) continue;
TSize num_qgrams = prefixLen - length(shape) + 1;
TIterator itText = begin(sequence, Standard());
++dir[hash(shape, itText)];
for(TSize i = 1; i < num_qgrams; ++i)
{
++itText;
++dir[hashNext(shape, itText)];
}
}
}
template < typename TIndex, typename TValue>
void createQGramIndex(TIndex &index, TValue prefixLen)
{
SEQAN_CHECKPOINT
typename Fibre<TIndex, QGram_Text>::Type const &text = indexText(index);
typename Fibre<TIndex, QGram_SA>::Type &sa = indexSA(index);
typename Fibre<TIndex, QGram_Dir>::Type &dir = indexDir(index);
typename Fibre<TIndex, QGram_Shape>::Type &shape = indexShape(index);
// 1. clear counters
arrayFill(begin(dir, Standard()), end(dir, Standard()), 0);
// 2. count q-grams
_qgramCountQGrams(dir, text, shape, prefixLen);
if (_qgramDisableBuckets(index))
{
// 3. cumulative sum
_qgramCummulativeSum(dir, True());
// 4. fill suffix array
_qgramFillSuffixArray(sa, text, shape, dir, True(), prefixLen);
// 5. correct disabled buckets
_qgramPostprocessBuckets(dir);
}
else
{
// 3. cumulative sum
_qgramCummulativeSum(dir, False());
// 4. fill suffix array
_qgramFillSuffixArray(sa, text, shape, dir, False(),prefixLen);
}
}
#endif
//////////////////////////////////////////////////////////////////////////////
// Find read matches in many genome sequences (import from Fasta)
template <
typename TMatches,
typename TReadSet,
typename TCounts,
typename TSpec,
typename TShape,
typename TSwiftSpec >
int mapSingleReads(
TMatches & matches,
StringSet<CharString> & genomeFileNameList,
StringSet<CharString> & genomeNames, // genome names, taken from the Fasta file
::std::map<unsigned,::std::pair< ::std::string,unsigned> > & gnoToFileMap,
TReadSet const & readSet,
TCounts & cnts,
RazerSOptions<TSpec> & options,
TShape const & shape,
Swift<TSwiftSpec> const)
{
typedef typename Value<TReadSet>::Type TRead;
typedef Index<TReadSet, Index_QGram<TShape> > TIndex; // q-gram index
typedef Pattern<TIndex, Swift<TSwiftSpec> > TSwiftPattern; // filter
typedef Pattern<TRead, MyersUkkonen> TMyersPattern; // verifier
/* // try opening each genome file once before running the whole mapping procedure
int filecount = 0;
int numFiles = length(genomeFileNameList);
while(filecount < numFiles)
{
::std::ifstream file;
file.open(toCString(genomeFileNameList[filecount]), ::std::ios_base::in | ::std::ios_base::binary);
if (!file.is_open())
return RAZERS_GENOME_FAILED;
file.close();
++filecount;
}
*/
// configure q-gram index
TIndex swiftIndex(readSet, shape);
cargo(swiftIndex).abundanceCut = options.abundanceCut;
cargo(swiftIndex)._debugLevel = options._debugLevel;
// configure Swift
TSwiftPattern swiftPattern(swiftIndex);
swiftPattern.params.minThreshold = options.threshold;
swiftPattern.params.tabooLength = options.tabooLength;
// init edit distance verifiers
unsigned readCount = countSequences(swiftIndex);
String<TMyersPattern> forwardPatterns;
options.compMask[4] = (options.matchN)? 15: 0;
if (!options.hammingOnly)
{
resize(forwardPatterns, readCount, Exact());
for(unsigned i = 0; i < readCount; ++i)
{
setHost(forwardPatterns[i], indexText(swiftIndex)[i]);
_patternMatchNOfPattern(forwardPatterns[i], options.matchN);
_patternMatchNOfFinder(forwardPatterns[i], options.matchN);
}
}
#ifdef RAZERS_MICRO_RNA
typename Size<TIndex>::Type qgram_count = 0;
if(options.microRNA)
{
for(unsigned i = 0; i < countSequences(swiftIndex); ++i)
if (sequenceLength(i, swiftIndex) >= options.rnaSeedLength)
qgram_count += options.rnaSeedLength - (length(shape) - 1);
resize(indexSA(swiftIndex), qgram_count, Exact());
resize(indexDir(swiftIndex), _fullDirLength(swiftIndex), Exact());
createQGramIndex(swiftIndex,options.rnaSeedLength);
}
#endif
#ifdef RAZERS_DIRECT_MAQ_MAPPING
if(options.maqMapping)
{
resize(cnts, 2);
for (unsigned i = 0; i < length(cnts); ++i)
fill(cnts[i], readCount, 31); //initialize with maxeditDist, 11:5 for count:dist
}
#endif
// clear stats
options.FP = 0;
options.TP = 0;
options.timeMapReads = 0;
options.timeDumpResults = 0;
unsigned filecount = 0;
unsigned numFiles = length(genomeFileNameList);
unsigned gseqNo = 0;
// open genome files, one by one
while (filecount < numFiles)
{
// open genome file
::std::ifstream file;
file.open(toCString(genomeFileNameList[filecount]), ::std::ios_base::in | ::std::ios_base::binary);
if (!file.is_open())
return RAZERS_GENOME_FAILED;
// remove the directory prefix of current genome file
::std::string genomeFile(toCString(genomeFileNameList[filecount]));
size_t lastPos = genomeFile.find_last_of('/') + 1;
if (lastPos == genomeFile.npos) lastPos = genomeFile.find_last_of('\\') + 1;
if (lastPos == genomeFile.npos) lastPos = 0;
::std::string genomeName = genomeFile.substr(lastPos);
CharString id;
Dna5String genome;
unsigned gseqNoWithinFile = 0;
// iterate over genome sequences
SEQAN_PROTIMESTART(find_time);
for(; !_streamEOF(file); ++gseqNo)
{
if (options.genomeNaming == 0)
{
//readID(file, id, Fasta()); // read Fasta id
readShortID(file, id, Fasta()); // read Fasta id up to first whitespace
appendValue(genomeNames, id, Generous());
}
read(file, genome, Fasta()); // read Fasta sequence
gnoToFileMap.insert(::std::make_pair<unsigned,::std::pair< ::std::string,unsigned> >(gseqNo,::std::make_pair< ::std::string,unsigned>(genomeName,gseqNoWithinFile)));
if (options.forward)
mapSingleReads(matches, genome, gseqNo, swiftPattern, forwardPatterns, cnts, 'F', options);
if (options.reverse)
{
reverseComplementInPlace(genome);
mapSingleReads(matches, genome, gseqNo, swiftPattern, forwardPatterns, cnts, 'R', options);
}
++gseqNoWithinFile;
}
options.timeMapReads += SEQAN_PROTIMEDIFF(find_time);
file.close();
++filecount;
}
if (options._debugLevel >= 1)
::std::cerr << ::std::endl << "Finding reads took \t" << options.timeMapReads << " seconds" << ::std::endl;
if (options._debugLevel >= 2) {
::std::cerr << ::std::endl;
::std::cerr << "___FILTRATION_STATS____" << ::std::endl;
::std::cerr << "Swift FP: " << options.FP << ::std::endl;
::std::cerr << "Swift TP: " << options.TP << ::std::endl;
}
return 0;
}
//////////////////////////////////////////////////////////////////////////////
// Find read matches in many genome sequences (given as StringSet)
template <
typename TMatches,
typename TGenomeSet,
typename TReadSet,
typename TCounts,
typename TSpec,
typename TShape,
typename TSwiftSpec >
int mapSingleReads(
TMatches & matches,
TGenomeSet & genomeSet,
TReadSet const & readSet,
TCounts & cnts,
RazerSOptions<TSpec> & options,
TShape const & shape,
Swift<TSwiftSpec> const)
{
typedef typename Value<TReadSet>::Type TRead;
typedef Index<TReadSet, Index_QGram<TShape> > TIndex; // q-gram index
typedef Pattern<TIndex, Swift<TSwiftSpec> > TSwiftPattern; // filter
typedef Pattern<TRead, MyersUkkonen> TMyersPattern; // verifier
// configure q-gram index
TIndex swiftIndex(readSet, shape);
cargo(swiftIndex).abundanceCut = options.abundanceCut;
cargo(swiftIndex)._debugLevel = options._debugLevel;
// configure Swift
TSwiftPattern swiftPattern(swiftIndex);
swiftPattern.params.minThreshold = options.threshold;
swiftPattern.params.tabooLength = options.tabooLength;
// init edit distance verifiers
String<TMyersPattern> forwardPatterns;
options.compMask[4] = (options.matchN)? 15: 0;
if (!options.hammingOnly)
{
unsigned readCount = countSequences(swiftIndex);
resize(forwardPatterns, readCount, Exact());
for(unsigned i = 0; i < readCount; ++i)
{
setHost(forwardPatterns[i], indexText(swiftIndex)[i]);
_patternMatchNOfPattern(forwardPatterns[i], options.matchN);
_patternMatchNOfFinder(forwardPatterns[i], options.matchN);
}
}
// clear stats
options.FP = 0;
options.TP = 0;
options.timeMapReads = 0;
options.timeDumpResults = 0;
CharString id;
#ifdef RAZERS_DIRECT_MAQ_MAPPING
if(options.maqMapping)
{
resize(cnts, 2);
for (unsigned i = 0; i < length(cnts); ++i)
fill(cnts[i], length(readSet), 31);
}
#endif
// iterate over genome sequences
SEQAN_PROTIMESTART(find_time);
for(unsigned gseqNo = 0; gseqNo < length(genomeSet); ++gseqNo)
{
if (options.forward)
mapSingleReads(matches, genomeSet[gseqNo], gseqNo, swiftPattern, forwardPatterns, cnts, 'F', options);
if (options.reverse)
{
reverseComplementInPlace(genomeSet[gseqNo]);
mapSingleReads(matches, genomeSet[gseqNo], gseqNo, swiftPattern, forwardPatterns, cnts, 'R', options);
reverseComplementInPlace(genomeSet[gseqNo]);
}
}
options.timeMapReads += SEQAN_PROTIMEDIFF(find_time);
if (options._debugLevel >= 1)
::std::cerr << ::std::endl << "Finding reads took \t" << options.timeMapReads << " seconds" << ::std::endl;
if (options._debugLevel >= 2) {
::std::cerr << ::std::endl;
::std::cerr << "___FILTRATION_STATS____" << ::std::endl;
::std::cerr << "Swift FP: " << options.FP << ::std::endl;
::std::cerr << "Swift TP: " << options.TP << ::std::endl;
}
return 0;
}
//////////////////////////////////////////////////////////////////////////////
// Wrapper for single/mate-pair mapping
template <
typename TMatches,
typename TReadSet,
typename TCounts,
typename TSpec,
typename TShape,
typename TSwiftSpec >
int mapReads(
TMatches & matches,
StringSet<CharString> & genomeFileNameList,
StringSet<CharString> & genomeNames, // genome names, taken from the Fasta file
::std::map<unsigned,::std::pair< ::std::string,unsigned> > & gnoToFileMap,
TReadSet const & readSet,
TCounts & cnts,
RazerSOptions<TSpec> & options,
TShape const & shape,
Swift<TSwiftSpec> const)
{
#ifdef RAZERS_MATEPAIRS
if (options.libraryLength >= 0)
return mapMatePairReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, shape, Swift<TSwiftSpec>());
else
#endif
return mapSingleReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, shape, Swift<TSwiftSpec>());
}
template <
typename TMatches,
typename TGenomeSet,
typename TReadSet,
typename TCounts,
typename TSpec,
typename TShape,
typename TSwiftSpec >
int mapReads(
TMatches & matches,
TGenomeSet & genomeSet,
TReadSet const & readSet,
TCounts & cnts,
RazerSOptions<TSpec> & options,
TShape const & shape,
Swift<TSwiftSpec> const)
{
#ifdef RAZERS_MATEPAIRS
if (options.libraryLength >= 0)
return mapMatePairReads(matches, genomeSet, readSet, cnts, options, shape, Swift<TSwiftSpec>());
else
#endif
return mapSingleReads(matches, genomeSet, readSet, cnts, options, shape, Swift<TSwiftSpec>());
}
//////////////////////////////////////////////////////////////////////////////
// Wrapper for different template specializations
template <typename TMatches, typename TReadSet, typename TCounts, typename TSpec>
int mapReads(
TMatches & matches,
StringSet<CharString> & genomeFileNameList,
StringSet<CharString> & genomeNames, // genome names, taken from the Fasta file
::std::map<unsigned,::std::pair< ::std::string,unsigned> > & gnoToFileMap,
TReadSet const & readSet,
TCounts & cnts,
RazerSOptions<TSpec> & options)
{
Shape<Dna, SimpleShape> ungapped;
Shape<Dna, OneGappedShape> onegapped;
Shape<Dna, GenericShape> gapped;
// 2x3 SPECIALIZATION
if (options.hammingOnly)
{
// select best-fitting shape
if (stringToShape(ungapped, options.shape))
return mapReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, ungapped, Swift<SwiftSemiGlobalHamming>());
if (stringToShape(onegapped, options.shape))
return mapReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, onegapped, Swift<SwiftSemiGlobalHamming>());
if (stringToShape(gapped, options.shape))
return mapReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, gapped, Swift<SwiftSemiGlobalHamming>());
}
else
{
if (stringToShape(ungapped, options.shape))
return mapReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, ungapped, Swift<SwiftSemiGlobal>());
if (stringToShape(onegapped, options.shape))
return mapReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, onegapped, Swift<SwiftSemiGlobal>());
if (stringToShape(gapped, options.shape))
return mapReads(matches, genomeFileNameList, genomeNames, gnoToFileMap, readSet, cnts, options, gapped, Swift<SwiftSemiGlobal>());
}
return RAZERS_INVALID_SHAPE;
}
template <typename TMatches, typename TGenomeSet, typename TReadSet, typename TCounts, typename TSpec>
int mapReads(
TMatches & matches,
TGenomeSet & genomeSet,
TReadSet const & readSet,
TCounts & cnts,
RazerSOptions<TSpec> & options)
{
Shape<Dna, SimpleShape> ungapped;
Shape<Dna, OneGappedShape> onegapped;
Shape<Dna, GenericShape> gapped;
// 2x3 SPECIALIZATION
if (options.hammingOnly)
{
// select best-fitting shape
if (stringToShape(ungapped, options.shape))
return mapReads(matches, genomeSet, readSet, cnts, options, ungapped, Swift<SwiftSemiGlobalHamming>());
if (stringToShape(onegapped, options.shape))
return mapReads(matches, genomeSet, readSet, cnts, options, onegapped, Swift<SwiftSemiGlobalHamming>());
if (stringToShape(gapped, options.shape))
return mapReads(matches, genomeSet, readSet, cnts, options, gapped, Swift<SwiftSemiGlobalHamming>());
}
else
{
if (stringToShape(ungapped, options.shape))
return mapReads(matches, genomeSet, readSet, cnts, options, ungapped, Swift<SwiftSemiGlobal>());
if (stringToShape(onegapped, options.shape))
return mapReads(matches, genomeSet, readSet, cnts, options, onegapped, Swift<SwiftSemiGlobal>());
if (stringToShape(gapped, options.shape))
return mapReads(matches, genomeSet, readSet, cnts, options, gapped, Swift<SwiftSemiGlobal>());
}
return RAZERS_INVALID_SHAPE;
}
}
#endif
|