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
|
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2026, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: Hannes Hauswedell <hannes.hauswedell@fu-berlin.de>
// ==========================================================================
// Tests for the blast module
// ==========================================================================
// Files that are being read by this implementation
#define PLUS_COMMENTS_DEFAULTS "/tests/blast/defaultfields.m9"
#define LEGACY_COMMENTS_DEFAULTS "/tests/blast/defaultfields_legacy.m9"
#define NOCOMMENTS_DEFAULTS "/tests/blast/defaultfields.m8"
#define PLUS_COMMENTS_CUSTOM "/tests/blast/customfields.m9"
#define NOCOMMENTS_CUSTOM "/tests/blast/customfields.m8"
using namespace seqan2;
inline void
_test_blast_read_tabular_match_lowlevel(std::string const & path)
{
std::string inPath = seqan2::getAbsolutePath(path.c_str());
std::ifstream ifstream(toCString(inPath),
std::ios_base::in | std::ios_base::binary);
SEQAN_ASSERT(ifstream.is_open());
auto it = directionIterator(ifstream, Input());
// first line is comments
SEQAN_ASSERT(!onMatch(it, BlastTabularLL()));
// skip commentss and comment lines
skipUntilMatch(it, BlastTabularLL());
// now we should be onMatch
SEQAN_ASSERT(onMatch(it, BlastTabularLL()));
CharString field1;
std::string field2;
double field3;
double field4; // is actually int but cast to double must work, too
unsigned field5;
unsigned field6;
unsigned field7;
unsigned field8;
unsigned field9;
unsigned field10;
double field11;
double field12;
readMatch(it, BlastTabularLL(), field1, field2, field3, field4, field5, field6,
field7, field8, field9, field10, field11, field12);
SEQAN_ASSERT_EQ(field1, "SHAA004TF");
SEQAN_ASSERT_EQ(field2, "sp|P0A916|OMPW_SHIFL");
SEQAN_ASSERT_EQ(field3, 50.43);
SEQAN_ASSERT_EQ(field4, 115.0);
if (path == LEGACY_COMMENTS_DEFAULTS)
SEQAN_ASSERT_EQ(field5, 57u);
else // legacy blast includes gaps in mismatches
SEQAN_ASSERT_EQ(field5, 49u);
SEQAN_ASSERT_EQ(field6, 2u);
SEQAN_ASSERT_EQ(field7, 389u);
SEQAN_ASSERT_EQ(field8, 733u);
SEQAN_ASSERT_EQ(field9, 1u);
SEQAN_ASSERT_EQ(field10, 107u);
SEQAN_ASSERT_LEQ(std::abs(field11 - 1e-26), 1e-10);
SEQAN_ASSERT_LEQ(std::abs(field12 - 108), 1e-3);
// SEQAN_TRY reading less coluumns than are present
readMatch(it, BlastTabularLL(), field1, field2, field3, field4, field5, field6,
field7, field8, field9, field10);
SEQAN_ASSERT_EQ(field1, "SHAA004TF");
SEQAN_ASSERT_EQ(field2, "sp|P0A915|OMPW_ECOLI");
SEQAN_ASSERT_EQ(field3, 50.43);
SEQAN_ASSERT_EQ(field4, 115.0);
if (path == LEGACY_COMMENTS_DEFAULTS) // legacy blast includes gaps in mismatches
SEQAN_ASSERT_EQ(field5, 57u);
else
SEQAN_ASSERT_EQ(field5, 49u);
SEQAN_ASSERT_EQ(field6, 2u);
SEQAN_ASSERT_EQ(field7, 389u);
SEQAN_ASSERT_EQ(field8, 733u);
SEQAN_ASSERT_EQ(field9, 1u);
SEQAN_ASSERT_EQ(field10, 107u);
// read remaining matches
while (onMatch(it, BlastTabularLL()))
readMatch(it, BlastTabularLL(), field1); // only one field
// go to last record with matches
skipUntilMatch(it, BlastTabularLL());
// goto second (last) match
skipLine(it);
// check if exceptions are properly thrown
bool exceptThrown = false;
SEQAN_TRY
{
// no strings here to take the strings
readMatch(it, BlastTabularLL(), field3, field4, field5, field6, field7, field8, field9, field10, field11,
field12);
} SEQAN_CATCH (BadLexicalCast const & e)
{
exceptThrown = true;
}
SEQAN_ASSERT(exceptThrown);
// skip rest of line
skipLine(it);
ifstream.close();
}
SEQAN_DEFINE_TEST(test_blast_read_lowlevel)
{
// this testsBlastTabular#readMatch(),BlastTabular#skipMatch() and
//BlastTabular#skipUntilMatch
_test_blast_read_tabular_match_lowlevel(PLUS_COMMENTS_DEFAULTS);
// basic match reading should work between plus and legacy
_test_blast_read_tabular_match_lowlevel(LEGACY_COMMENTS_DEFAULTS);
}
template <typename TContext>
void _testReadTabularWithoutComments(TContext &,
std::string path,
bool const defaults,
bool const islegacy)
{
typedef BlastMatchField<> TField;
std::string inPath = seqan2::getAbsolutePath(path.c_str());
BlastRecord<> r;
BlastTabularFileIn<TContext> fileIn(toCString(inPath));
TContext & context = seqan2::context(fileIn);
/* Variables we will be comparing with */
std::vector<typename TField::Enum> const fieldsDefault =
{
TField::Enum::STD
};
std::vector<typename TField::Enum> const fieldsCustom =
{
TField::Enum::Q_SEQ_ID,
TField::Enum::S_SEQ_ID,
TField::Enum::LENGTH,
TField::Enum::N_IDENT,
TField::Enum::MISMATCH,
TField::Enum::POSITIVE,
TField::Enum::GAPS,
TField::Enum::Q_START,
TField::Enum::Q_END,
TField::Enum::S_START,
TField::Enum::S_END,
TField::Enum::FRAMES,
TField::Enum::BIT_SCORE
};
/* Begin of TESTS */
// read comments of file
readHeader(fileIn);
SEQAN_ASSERT(context.tabularSpec == BlastTabularSpec::NO_COMMENTS);
// fieldsList as in-parameter
if (defaults)
context.fields = fieldsDefault;
else
context.fields = fieldsCustom;
context.legacyFormat = islegacy;
readRecord(r, fileIn);
SEQAN_ASSERT_EQ(r.qId, "SHAA004TF");
SEQAN_ASSERT_EQ(length(r.matches), 17u);
// TEST first match of this record extensively:
{
auto & m = r.matches.front();
SEQAN_ASSERT_EQ(m.qId, "SHAA004TF");
SEQAN_ASSERT_EQ(m.sId, "sp|P0A916|OMPW_SHIFL");
SEQAN_ASSERT_EQ(m.alignStats.numMatches, 58u /*(115u * 50.43) / 100*/);
SEQAN_ASSERT_EQ(m.alignStats.alignmentLength, 115u);
if (path == LEGACY_COMMENTS_DEFAULTS) // legacy blast includes gaps in mismatches
SEQAN_ASSERT_EQ(m.alignStats.numMismatches, 57u);
else
SEQAN_ASSERT_EQ(m.alignStats.numMismatches, 49u);
SEQAN_ASSERT_EQ(m.qStart, 389u);
SEQAN_ASSERT_EQ(m.qEnd, 733u);
SEQAN_ASSERT_EQ(m.sStart, 1u);
SEQAN_ASSERT_EQ(m.sEnd, 107u);
if (defaults)
{
SEQAN_ASSERT_EQ(m.alignStats.numGapOpens, 2u);
SEQAN_ASSERT_LEQ(std::abs(m.bitScore - 108), 1e-3);
SEQAN_ASSERT_LEQ(std::abs(m.eValue - 1e-26), 1e-10);
} else
{
SEQAN_ASSERT_EQ(m.alignStats.numPositiveScores, 72u);
SEQAN_ASSERT_EQ(m.qFrameShift, 2);
SEQAN_ASSERT_EQ(m.sFrameShift, 0);
}
// legacy blast includes gaps in mismatches, so gaps are only computed
// for BLAST_PLUS
if (!context.legacyFormat)
{
if (path == LEGACY_COMMENTS_DEFAULTS) // legacy output with plus reader
SEQAN_ASSERT_EQ(m.alignStats.numGaps, 0u /*(115u - 58 - 49)*/);
else // plus output and plus reader
SEQAN_ASSERT_EQ(m.alignStats.numGaps, 8u /*(115u - 58 - 49)*/);
} else
{
SEQAN_ASSERT_EQ(m.alignStats.numGaps, std::numeric_limits<decltype(m.alignStats.numGaps)>::max());
}
}
// TEST basic stuff on other matches
for (auto const & m : r.matches)
{
SEQAN_ASSERT_EQ(m.qId, "SHAA004TF"); // truncated at first space
// check bitscore as an example field that is both in default and custom
SEQAN_ASSERT_GEQ(m.bitScore, 40.8);
SEQAN_ASSERT_LEQ(m.bitScore, 108.0);
}
if (defaults)
{
SEQAN_ASSERT_EQ(length(context.fields), 1u);
SEQAN_ASSERT_EQ((uint8_t)context.fields[0], (uint8_t)TField::Enum::STD);
} else
{
SEQAN_ASSERT_EQ(length(context.fields), 13u);
for (unsigned i = 0; i < 13u; ++i)
SEQAN_ASSERT_EQ((uint8_t)context.fields[i], (uint8_t)fieldsCustom[i]);
}
readRecord(r, fileIn);
SEQAN_ASSERT_EQ(r.qId, "SHAA004TR");
SEQAN_ASSERT_EQ(length(r.matches), 2u);
// TEST last match of this record extensively:
{
auto & m = r.matches.back();
SEQAN_ASSERT_EQ(m.qId, "SHAA004TR");
SEQAN_ASSERT_EQ(m.sId, "sp|Q0HGZ8|META_SHESM");
SEQAN_ASSERT_EQ(m.alignStats.numMatches, 77u /* (77u * 100) / 100 */);
SEQAN_ASSERT_EQ(m.alignStats.alignmentLength, 77u);
SEQAN_ASSERT_EQ(m.alignStats.numMismatches, 0u);
SEQAN_ASSERT_EQ(m.qStart, 232u);
SEQAN_ASSERT_EQ(m.qEnd, 2u);
SEQAN_ASSERT_EQ(m.sStart, 1u);
SEQAN_ASSERT_EQ(m.sEnd, 77u);
// legacy blast includes gaps in mismatches, so gaps are only computed
// for BLAST_PLUS
if (!islegacy)
SEQAN_ASSERT_EQ(m.alignStats.numGaps, 0u); // always zero here
else
SEQAN_ASSERT_EQ(m.alignStats.numGaps, std::numeric_limits<decltype(m.alignStats.numGaps)>::max());
if (defaults)
{
SEQAN_ASSERT_EQ(m.alignStats.numGapOpens, 0u);
SEQAN_ASSERT_LEQ(std::abs(m.eValue - 3e-42), 1e-10);
SEQAN_ASSERT_LEQ(std::abs(m.bitScore - 152), 1e-3);
} else
{
SEQAN_ASSERT_EQ(m.alignStats.numPositiveScores, 77u);
SEQAN_ASSERT_EQ(m.qFrameShift, -2);
SEQAN_ASSERT_EQ(m.sFrameShift, 0);
}
}
// TEST basic stuff on other matches
for (auto const & m : r.matches)
{
SEQAN_ASSERT_EQ(m.qId, "SHAA004TR"); // truncated at first space
// check bitscore as an example field that is both in default and custom
SEQAN_ASSERT_EQ(m.bitScore, 152.0);
}
// bottom of file
readFooter(fileIn);
SEQAN_ASSERT_EQ(length(context.conformancyErrors), 0u);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_without_comments)
{
BlastIOContext<> context;
_testReadTabularWithoutComments(context, NOCOMMENTS_DEFAULTS, true, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_without_comments_customfields)
{
BlastIOContext<> context;
_testReadTabularWithoutComments(context, NOCOMMENTS_CUSTOM, false, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_without_comments_legacy)
{
BlastIOContext<> context;
_testReadTabularWithoutComments(context, NOCOMMENTS_DEFAULTS, true, true);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_without_comments_constexpr)
{
BlastIOContext<Blosum62, BlastProgram::BLASTP, BlastTabularSpec::NO_COMMENTS> context;
_testReadTabularWithoutComments(context, NOCOMMENTS_DEFAULTS, true, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_without_comments_customfields_constexpr)
{
BlastIOContext<Blosum62, BlastProgram::BLASTP, BlastTabularSpec::NO_COMMENTS> context;
_testReadTabularWithoutComments(context, NOCOMMENTS_CUSTOM, false, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_without_comments_legacy_constexpr)
{
BlastIOContext<Blosum62, BlastProgram::BLASTP, BlastTabularSpec::NO_COMMENTS> context;
_testReadTabularWithoutComments(context, NOCOMMENTS_DEFAULTS, true, true);
}
template <typename TContext>
void _testReadTabularWithComments(TContext &,
std::string path,
bool const defaults,
bool const islegacy)
{
typedef BlastMatchField<> TField;
std::string inPath = seqan2::getAbsolutePath(path.c_str());
BlastRecord<> r;
BlastTabularFileIn<TContext> fileIn(toCString(inPath));
TContext & context = seqan2::context(fileIn);
/* Variables we will be comparing with */
std::vector<typename TField::Enum> const fieldsDefault =
{
TField::Enum::STD
};
std::vector<typename TField::Enum> const fieldsCustom =
{
TField::Enum::Q_SEQ_ID,
TField::Enum::S_SEQ_ID,
TField::Enum::LENGTH,
TField::Enum::N_IDENT,
TField::Enum::MISMATCH,
TField::Enum::POSITIVE,
TField::Enum::GAPS,
TField::Enum::Q_START,
TField::Enum::Q_END,
TField::Enum::S_START,
TField::Enum::S_END,
TField::Enum::FRAMES,
TField::Enum::BIT_SCORE
};
//TODO add fieldCustom2 without BIT_SCORE
std::string const dbString = "/tmp/uniprot_sprot.fasta";
std::string const vString = islegacy ? "BLASTX 2.2.26 [Sep-21-2011]" : "BLASTX 2.2.26+";
/* Begin of TESTS */
// read comments of file
readHeader(fileIn);
SEQAN_ASSERT(context.tabularSpec == BlastTabularSpec::COMMENTS);
readRecord(r, fileIn);
SEQAN_ASSERT_EQ(context.legacyFormat, islegacy);
SEQAN_ASSERT_EQ(r.qId, "SHAA003TF Sample 1 Mate SHAA003TR trimmed_to 27 965");
SEQAN_ASSERT_EQ(context.dbName, dbString);
SEQAN_ASSERT_EQ(context.versionString, vString);
SEQAN_ASSERT_EQ(length(r.matches), 0u);
SEQAN_ASSERT_EQ(length(context.fields), 1u); // not overwritten because not available
SEQAN_ASSERT_EQ(length(context.fieldsAsStrings), 12u); // not overwritten because not available
SEQAN_ASSERT_EQ(length(context.otherLines), 0u);
SEQAN_ASSERT_EQ(length(context.conformancyErrors), 0u);
readRecord(r, fileIn);
SEQAN_ASSERT_EQ(r.qId, "SHAA003TR Sample 1 Mate SHAA003TF trimmed_to 17 935");
SEQAN_ASSERT_EQ(context.dbName, dbString);
SEQAN_ASSERT_EQ(context.versionString, vString);
SEQAN_ASSERT_EQ(length(r.matches), 0u);
SEQAN_ASSERT_EQ(length(context.fields), 1u); // not overwritten because not available
SEQAN_ASSERT_EQ(length(context.fieldsAsStrings), 12u); // not overwritten because not available
SEQAN_ASSERT_EQ(length(context.otherLines), 0u);
SEQAN_ASSERT_EQ(length(context.conformancyErrors), 0u);
readRecord(r, fileIn);
SEQAN_ASSERT_EQ(r.qId, "SHAA004TF Sample 1 Mate SHAA004TR trimmed_to 25 828");
SEQAN_ASSERT_EQ(context.dbName, dbString);
SEQAN_ASSERT_EQ(context.versionString, vString);
SEQAN_ASSERT_EQ(length(r.matches), 17u);
SEQAN_ASSERT_EQ(length(context.otherLines), 0u);
SEQAN_ASSERT_EQ(length(context.conformancyErrors), 0u);
if (!defaults)
{
SEQAN_ASSERT_EQ(length(context.fields), 13u);
SEQAN_ASSERT_EQ(length(context.fieldsAsStrings),13u);
for (uint8_t i = 0; i < 13; ++i)
SEQAN_ASSERT_EQ((uint32_t)context.fields[i],(uint32_t)fieldsCustom[i]);
} else
{
SEQAN_ASSERT_EQ(length(context.fields), 1u);
SEQAN_ASSERT_EQ(length(context.fieldsAsStrings),12u); // defaults
SEQAN_ASSERT_EQ((uint32_t)context.fields[0], (uint32_t)TField::Enum::STD);
}
// TEST first match of this record extensively:
{
auto & m = r.matches.front();
SEQAN_ASSERT_EQ(m.qId, "SHAA004TF");
SEQAN_ASSERT_EQ(m.sId, "sp|P0A916|OMPW_SHIFL");
SEQAN_ASSERT_EQ(m.alignStats.numMatches, 58u /*(115u * 50.43) / 100*/);
SEQAN_ASSERT_EQ(m.alignStats.alignmentLength, 115u);
if (path == LEGACY_COMMENTS_DEFAULTS) // legacy blast includes gaps in mismatches
SEQAN_ASSERT_EQ(m.alignStats.numMismatches, 57u);
else
SEQAN_ASSERT_EQ(m.alignStats.numMismatches, 49u);
SEQAN_ASSERT_EQ(m.qStart, 389u);
SEQAN_ASSERT_EQ(m.qEnd, 733u);
SEQAN_ASSERT_EQ(m.sStart, 1u);
SEQAN_ASSERT_EQ(m.sEnd, 107u);
if (defaults)
{
SEQAN_ASSERT_EQ(m.alignStats.numGapOpens, 2u);
SEQAN_ASSERT_LEQ(std::abs(m.bitScore - 108), 1e-3);
SEQAN_ASSERT_LEQ(std::abs(m.eValue - 1e-26), 1e-10);
} else
{
SEQAN_ASSERT_EQ(m.alignStats.numPositiveScores, 72u);
SEQAN_ASSERT_EQ(m.qFrameShift, 2);
SEQAN_ASSERT_EQ(m.sFrameShift, 0);
}
// legacy blast includes gaps in mismatches, so gaps are only computed
// for BLAST_PLUS
if (!context.legacyFormat)
{
if (path == LEGACY_COMMENTS_DEFAULTS) // legacy output with plus reader
SEQAN_ASSERT_EQ(m.alignStats.numGaps, 0u /*(115u - 58 - 49)*/);
else // plus output and plus reader
SEQAN_ASSERT_EQ(m.alignStats.numGaps, 8u /*(115u - 58 - 49)*/);
} else
{
SEQAN_ASSERT_EQ(m.alignStats.numGaps, std::numeric_limits<decltype(m.alignStats.numGaps)>::max());
}
}
// TEST basic stuff on other matches
for (auto const & m : r.matches)
{
SEQAN_ASSERT_EQ(m.qId, "SHAA004TF"); // truncated at first space
// check bitscore as an example field that is both in default and custom
SEQAN_ASSERT_GEQ(m.bitScore, 40.8);
SEQAN_ASSERT_LEQ(m.bitScore, 108.0);
}
if (defaults)
{
SEQAN_ASSERT_EQ(length(context.fields), 1u);
SEQAN_ASSERT_EQ((uint8_t)context.fields[0], (uint8_t)TField::Enum::STD);
} else
{
SEQAN_ASSERT_EQ(length(context.fields), 13u);
for (unsigned i = 0; i < 13u; ++i)
SEQAN_ASSERT_EQ((uint8_t)context.fields[i], (uint8_t)fieldsCustom[i]);
}
// fieldsList as in-parameter
if (defaults)
context.fields = fieldsDefault;
else
context.fields = fieldsCustom;
context.ignoreFieldsInComments = true;
readRecord(r, fileIn);
SEQAN_ASSERT_EQ(r.qId, "SHAA004TR Sample 1 Mate SHAA004TF trimmed_to 20 853");
SEQAN_ASSERT_EQ(context.dbName, dbString);
SEQAN_ASSERT_EQ(context.versionString, vString);
SEQAN_ASSERT_EQ(length(r.matches), 2u);
SEQAN_ASSERT_EQ(length(context.otherLines), 0u);
SEQAN_ASSERT_EQ(length(context.conformancyErrors), 0u);
// TEST last match of this record extensively:
{
auto & m = r.matches.back();
SEQAN_ASSERT_EQ(m.qId, "SHAA004TR");
SEQAN_ASSERT_EQ(m.sId, "sp|Q0HGZ8|META_SHESM");
SEQAN_ASSERT_EQ(m.alignStats.numMatches, 77u /* (77u * 100) / 100 */);
SEQAN_ASSERT_EQ(m.alignStats.alignmentLength, 77u);
SEQAN_ASSERT_EQ(m.alignStats.numMismatches, 0u);
SEQAN_ASSERT_EQ(m.qStart, 232u);
SEQAN_ASSERT_EQ(m.qEnd, 2u);
SEQAN_ASSERT_EQ(m.sStart, 1u);
SEQAN_ASSERT_EQ(m.sEnd, 77u);
// legacy blast includes gaps in mismatches, so gaps are only computed
// for BLAST_PLUS
if (!islegacy)
SEQAN_ASSERT_EQ(m.alignStats.numGaps, 0u); // always zero here
else
SEQAN_ASSERT_EQ(m.alignStats.numGaps, std::numeric_limits<decltype(m.alignStats.numGaps)>::max());
if (defaults)
{
SEQAN_ASSERT_EQ(m.alignStats.numGapOpens, 0u);
SEQAN_ASSERT_LEQ(std::abs(m.eValue - 3e-42), 1e-10);
SEQAN_ASSERT_LEQ(std::abs(m.bitScore - 152), 1e-3);
} else
{
SEQAN_ASSERT_EQ(m.alignStats.numPositiveScores, 77u);
SEQAN_ASSERT_EQ(m.qFrameShift, -2);
SEQAN_ASSERT_EQ(m.sFrameShift, 0);
}
}
// TEST basic stuff on other matches
for (auto const & m : r.matches)
{
SEQAN_ASSERT_EQ(m.qId, "SHAA004TR"); // truncated at first space
// check bitscore as an example field that is both in default and custom
SEQAN_ASSERT_EQ(m.bitScore, 152.0);
}
context.ignoreFieldsInComments = false;
readRecord(r, fileIn);
SEQAN_ASSERT_EQ(context.legacyFormat, islegacy);
SEQAN_ASSERT_EQ(r.qId, "SHAA005TR Sample 1 Mate SHAA005TF trimmed_to 22 960");
SEQAN_ASSERT_EQ(context.dbName, "");
SEQAN_ASSERT_EQ(context.versionString, vString);
SEQAN_ASSERT_EQ(length(r.matches), 0u);
SEQAN_ASSERT_EQ(length(context.otherLines), 1u);
SEQAN_ASSERT_EQ(length(context.conformancyErrors), 2u);
SEQAN_ASSERT_EQ(context.otherLines[0], " Datacase: /tmp/uniprot_sprot.fasta");
SEQAN_ASSERT_EQ(context.conformancyErrors[0], "No or multiple database lines present.");
SEQAN_ASSERT(!onRecord(fileIn));
// bottom of file
readFooter(fileIn);
SEQAN_ASSERT_EQ(length(context.conformancyErrors), 0u);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_with_comments)
{
BlastIOContext<> context;
_testReadTabularWithComments(context, PLUS_COMMENTS_DEFAULTS, true, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_with_comments_customfields)
{
BlastIOContext<> context;
_testReadTabularWithComments(context, PLUS_COMMENTS_CUSTOM, false, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_with_comments_legacy)
{
BlastIOContext<> context;
_testReadTabularWithComments(context, LEGACY_COMMENTS_DEFAULTS, true, true);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_with_comments_constexpr)
{
BlastIOContext<Blosum62, BlastProgram::BLASTX, BlastTabularSpec::COMMENTS> context;
_testReadTabularWithComments(context, PLUS_COMMENTS_DEFAULTS, true, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_with_comments_customfields_constexpr)
{
BlastIOContext<Blosum62, BlastProgram::BLASTX, BlastTabularSpec::COMMENTS> context;
_testReadTabularWithComments(context, PLUS_COMMENTS_CUSTOM, false, false);
}
SEQAN_DEFINE_TEST(test_blast_read_tabular_with_comments_legacy_constexpr)
{
BlastIOContext<Blosum62, BlastProgram::BLASTX, BlastTabularSpec::COMMENTS> context;
_testReadTabularWithComments(context, LEGACY_COMMENTS_DEFAULTS, true, true);
}
|