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
|
// ==========================================================================
// 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>
// ==========================================================================
// This file contains routines to generate BLAST tab-seperated output
// ==========================================================================
#ifndef SEQAN_BLAST_BLAST_TABULAR_WRITE_H_
#define SEQAN_BLAST_BLAST_TABULAR_WRITE_H_
namespace seqan2 {
// ============================================================================
// Forwards
// ============================================================================
// ============================================================================
// Tags, Classes, Enums
// ============================================================================
// ----------------------------------------------------------------------------
// Type BlastTabularFileOut
// ----------------------------------------------------------------------------
/*!
* @class BlastTabularFileOut
* @signature template <typename TBlastIOContext>
* using BlastTabularFileOut = FormattedFile<BlastTabular, Output, TBlastIOContext>;
* @extends FormattedFileOut
* @headerfile <seqan/blast.h>
* @brief FormattedFileOut abstraction for @link BlastTabular @endlink
*
* This is a @link FormattedFile @endlink specialization for writing @link BlastTabular @endlink formats. For details
* on how to influence the writing of files and how to differentiate between the tabular format with and without
* comment lines, see @link BlastIOContext @endlink.
* Please note that you have to specify the type of the context as a template parameter to BlastTabularFileOut, see the example
* below.
*
* @section Overview
*
* <ul>
* <li> open @link BlastTabularFileOut @endlink,</li>
* <li> configure the @link BlastIOContext @endlink </li>
* <li> @link BlastTabularFileOut#writeHeader @endlink </li>
* <li> @link BlastTabularFileOut#writeRecord @endlink repeated up to n times</li>
* <li> @link BlastTabularFileOut#writeFooter @endlink </li>
* </ul>
*
* The following members of the context have to be defined before writing:
* <ul>
* <li> @link BlastIOContext::blastProgram @endlink (unless fixed at compile-time)</li>
* <li> @link BlastIOContext::scoringScheme @endlink</li>
* <li> @link BlastIOContext::dbName @endlink</li>
* <li> @link BlastIOContext::dbTotalLength @endlink</li>
* <li> @link BlastIOContext::dbNumberOfSeqs @endlink</li>
* </ul>
*
* For a detailed example have a look at the
* <a href="https://seqan.readthedocs.io/en/main/Tutorial/InputOutput/BlastIO.html">Blast IO tutorial</a>.
*
* Strictly speaking the <tt>writeHeader()</tt> call is not required for BlastTabular, but for consistency with
* other (blast) formats and the read interface it is recommended.
*
* @see BlastRecord
*/
template <typename TBlastIOContext = BlastIOContext<>>
using BlastTabularFileOut = FormattedFile<BlastTabular, Output, TBlastIOContext>;
// ============================================================================
// Metafunctions and global const-expressions
// ============================================================================
// ============================================================================
// Functions
// ============================================================================
// ----------------------------------------------------------------------------
// Function guessFormat()
// ----------------------------------------------------------------------------
template <typename TSpec>
inline bool guessFormat(FormattedFile<BlastTabular, Output, TSpec> &)
{
return true;
}
// ----------------------------------------------------------------------------
// Function _writeFieldLabels()
// ----------------------------------------------------------------------------
template <typename TFwdIterator,
typename TScore,
BlastProgram p,
BlastTabularSpec h>
inline void
_writeFieldLabels(TFwdIterator & stream,
BlastIOContext<TScore, p, h> & context,
BlastTabular const &)
{
if (!empty(context.fieldsAsStrings)) // give preference to string labels
{
write(stream, context.fieldsAsStrings, ", ");
}
else
{
for (auto it = seqan2::begin(context.fields),
itB = it,
itEnd = seqan2::end(context.fields);
it != itEnd;
++it)
{
if (it != itB)
write(stream, ", ");
write(stream, BlastMatchField<>::columnLabels[static_cast<uint8_t>(*it)]);
}
}
writeValue(stream, '\n');
}
// ----------------------------------------------------------------------------
// Function _writeCommentLines()
// ----------------------------------------------------------------------------
template <typename TFwdIterator,
typename TScore,
typename ... TSpecs,
BlastProgram p,
BlastTabularSpec h>
inline void
_writeCommentLinesWithoutColumnLabels(TFwdIterator & stream,
BlastIOContext<TScore, p, h> & context,
BlastRecord<TSpecs...> const & r,
BlastTabular const & /*tag*/)
{
write(stream, "# ");
if (empty(context.versionString))
context._setDefaultVersionString();
write(stream, context.versionString);
write(stream, "\n# Query: ");
write(stream, r.qId);
write(stream, "\n# Database: ");
write(stream, context.dbName);
write(stream, '\n');
}
template <typename TFwdIterator,
typename TScore,
typename ... TSpecs,
BlastProgram p,
BlastTabularSpec h>
inline void
_writeCommentLines(TFwdIterator & stream,
BlastIOContext<TScore, p, h> & context,
BlastRecord<TSpecs...> const & r,
BlastTabular const & /*tag*/)
{
++context._numberOfRecords;
if (context.tabularSpec == BlastTabularSpec::NO_COMMENTS)
return;
_writeCommentLinesWithoutColumnLabels(stream, context, r, BlastTabular());
if (SEQAN_LIKELY(!context.legacyFormat))
{
// only write fields line if matches will follow
if (length(r.matches) > 0)
{
write(stream, "# Fields: ");
_writeFieldLabels(stream, context, BlastTabular());
}
// write # hits line
write(stream, "# ");
write(stream, length(r.matches));
write(stream, " hits found\n");
}
else
{
write(stream, "# Fields: ");
write(stream, BlastMatchField<>::legacyColumnLabels);
write(stream, '\n');
#if SEQAN_ENABLE_DEBUG
if ((length(context.fields) != 1) || (context.fields[0] != BlastMatchField<>::Enum::STD))
std::cerr << "Warning: custom fields set, but will be ignored, because legacyFormat is also set.\n";
#endif
}
}
// ----------------------------------------------------------------------------
// Function _writeField() [match object given]
// ----------------------------------------------------------------------------
template <typename TSequence>
inline SEQAN_FUNC_ENABLE_IF(Is<StringConcept<TSequence>>, bool)
_isEmpty(TSequence const & s)
{
return length(s);
}
template <typename TSequence>
inline SEQAN_FUNC_DISABLE_IF(Is<StringConcept<TSequence>>, bool)
_isEmpty(TSequence const &)
{
return true;
}
template <typename TFwdIterator,
typename TScore,
typename ... TSpecs2,
typename ... TSpecs,
BlastProgram p,
BlastTabularSpec h>
inline void
_writeField(TFwdIterator & s,
BlastIOContext<TScore, p, h> & context,
BlastMatch<TSpecs2...> const & match,
BlastRecord<TSpecs...> const & record,
typename BlastMatchField<>::Enum const fieldId,
BlastTabular const &)
{
switch (fieldId)
{
case BlastMatchField<>::Enum::STD:
// STD is handled from the calling function
break;
case BlastMatchField<>::Enum::Q_SEQ_ID:
if (_isEmpty(match.qId)) // new behaviour
write(s, prefix(record.qId,
std::find(begin(record.qId, Standard()), end(record.qId, Standard()), ' ')
- begin(record.qId, Standard()))); // truncate at first ' '
else // deprecated behaviour
write(s, prefix(match.qId,
std::find(begin(match.qId, Standard()), end(match.qId, Standard()), ' ')
- begin(match.qId, Standard()))); // truncate at first ' '
break;
// case ENUM::Q_GI: write(s, * ); break;
case BlastMatchField<>::Enum::Q_ACC:
if (length(record.qAccs))
write(s, record.qAccs[0]);
else
write(s, "n/a");
break;
// case ENUM::Q_ACCVER: write(s, * ); break;
case BlastMatchField<>::Enum::Q_LEN:
if ((match.qLength != 0) && (match.qLength != record.qLength)) // deprecated behaviour
write(s, match.qLength);
else // new behaviour
write(s, record.qLength);
break;
case BlastMatchField<>::Enum::S_SEQ_ID:
write(s, prefix(match.sId,
std::find(begin(match.sId, Standard()), end(match.sId, Standard()), ' ')
- begin(match.sId, Standard()))); // truncate at first ' '
break;
// case ENUM::S_ALL_SEQ_ID: write(s, * ); break;
// case ENUM::S_GI: write(s, * ); break;
// case ENUM::S_ALL_GI: write(s, * ); break;
case BlastMatchField<>::Enum::S_ACC:
if (length(match.sAccs))
write(s, match.sAccs[0]);
else
write(s, "n/a");
break;
// case ENUM::S_ACCVER: write(s, * ); break;
case BlastMatchField<>::Enum::S_ALLACC:
if (length(match.sAccs))
{
write(s, match.sAccs[0]);
for (unsigned i = 1; i < length(match.sAccs); ++i)
{
write(s, ';');
write(s, match.sAccs[i]);
}
}
else
{
write(s, "n/a");
}
break;
case BlastMatchField<>::Enum::S_LEN:
write(s, match.sLength);
break;
case BlastMatchField<>::Enum::Q_START:
{
auto effectiveQStart = match.qStart;
auto effectiveQEnd = match.qEnd;
auto length = record.qLength;
if ((match.qLength != 0) && (match.qLength != record.qLength))
length = match.qLength;
_untranslateQPositions(effectiveQStart, effectiveQEnd, match.qFrameShift, length,
context.blastProgram);
write(s, effectiveQStart);
} break;
case BlastMatchField<>::Enum::Q_END:
{
auto effectiveQStart = match.qStart;
auto effectiveQEnd = match.qEnd;
auto length = record.qLength;
if ((match.qLength != 0) && (match.qLength != record.qLength))
length = match.qLength;
_untranslateQPositions(effectiveQStart, effectiveQEnd, match.qFrameShift, length,
context.blastProgram);
write(s, effectiveQEnd);
} break;
case BlastMatchField<>::Enum::S_START:
{
auto effectiveSStart = match.sStart;
auto effectiveSEnd = match.sEnd;
_untranslateSPositions(effectiveSStart, effectiveSEnd, match.sFrameShift, match.sLength,
context.blastProgram);
write(s, effectiveSStart);
} break;
case BlastMatchField<>::Enum::S_END:
{
auto effectiveSStart = match.sStart;
auto effectiveSEnd = match.sEnd;
_untranslateSPositions(effectiveSStart, effectiveSEnd, match.sFrameShift, match.sLength,
context.blastProgram);
write(s, effectiveSEnd);
} break;
// case ENUM::Q_SEQ: write(s, * ); break;
// case ENUM::S_SEQ: write(s, * ); break;
case BlastMatchField<>::Enum::E_VALUE:
{
std::string formatString;
// imported from NCBI code
if (match.eValue < 1.0e-180)
formatString = "%3.1lf";
else if (match.eValue < 1.0e-99)
formatString = "%2.0le";
else if (match.eValue < 0.0009)
formatString = "%3.0le";
else if (match.eValue < 0.1)
formatString = "%4.3lf";
else if (match.eValue < 1.0)
formatString = "%3.2lf";
else if (match.eValue < 10.0)
formatString = "%2.1lf";
else
formatString = "%5.0lf";
write(s, FormattedNumber<double>(formatString.c_str(), match.eValue));
} break;
case BlastMatchField<>::Enum::BIT_SCORE:
{
std::string formatString;
// imported from NCBI code
if (match.bitScore > 9999)
formatString = "%4.3le";
else if (match.bitScore > 99.9)
formatString = "%4.0lf";
else
formatString = "%4.1lf";
write(s, FormattedNumber<double>(formatString.c_str(), match.bitScore));
} break;
case BlastMatchField<>::Enum::SCORE:
write(s, match.alignStats.alignmentScore);
break;
case BlastMatchField<>::Enum::LENGTH:
write(s, match.alignStats.alignmentLength);
break;
case BlastMatchField<>::Enum::P_IDENT:
write(s, FormattedNumber<float>("%.2f", match.alignStats.alignmentIdentity));
break;
case BlastMatchField<>::Enum::N_IDENT:
write(s, match.alignStats.numMatches);
break;
case BlastMatchField<>::Enum::MISMATCH:
if (context.legacyFormat) // legacy format includes gaps in mismatches
write(s, match.alignStats.numMismatches +
match.alignStats.numGaps);
else
write(s, match.alignStats.numMismatches);
break;
case BlastMatchField<>::Enum::POSITIVE:
write(s, match.alignStats.numPositiveScores);
break;
case BlastMatchField<>::Enum::GAP_OPEN:
write(s, match.alignStats.numGapOpens);
break;
case BlastMatchField<>::Enum::GAPS:
write(s, match.alignStats.numGaps);
break;
case BlastMatchField<>::Enum::P_POS:
write(s, FormattedNumber<double>("%.2f", match.alignStats.alignmentSimilarity));
break;
case BlastMatchField<>::Enum::FRAMES:
// for formats that don't have frames, blast says 0 instead of +1
if (qNumFrames(context.blastProgram) > 1)
write(s, FormattedNumber<int8_t>("%i", match.qFrameShift));
else
write(s, FormattedNumber<int8_t>("%i", 0));
write(s, '/');
if (sNumFrames(context.blastProgram) > 1)
write(s, FormattedNumber<int8_t>("%i", match.sFrameShift));
else
write(s, FormattedNumber<int8_t>("%i", 0));
break;
case BlastMatchField<>::Enum::Q_FRAME:
if (qNumFrames(context.blastProgram) > 1)
write(s, FormattedNumber<int8_t>("%i", match.qFrameShift));
else
write(s, FormattedNumber<int8_t>("%i", 0));
break;
case BlastMatchField<>::Enum::S_FRAME:
if (sNumFrames(context.blastProgram) > 1)
write(s, FormattedNumber<int8_t>("%i", match.sFrameShift));
else
write(s, FormattedNumber<int8_t>("%i", 0));
break;
// case ENUM::BTOP: write( * ); break;
case BlastMatchField<>::Enum::S_TAX_IDS:
if (length(match.sTaxIds) == 1)
{
write(s, match.sTaxIds[0]);
}
else if (length(match.sTaxIds) > 1)
{
// they have to be sorted numerically
auto copy = match.sTaxIds;
sort(copy);
write(s, copy[0]);
for (unsigned i = 1; i < length(copy); ++i)
{
write(s, ';');
write(s, copy[i]);
}
}
else
{
write(s, "n/a");
}
break;
// case ENUM::S_SCI_NAMES: write( * ); break;
// case ENUM::S_COM_NAMES: write( * ); break;
// case ENUM::S_BLAST_NAMES: write( * ); break;
// case ENUM::S_S_KINGDOMS: write( * ); break;
// case ENUM::S_TITLE: write( * ); break;
// case ENUM::S_ALL_TITLES: write( * ); break;
// case ENUM::S_STRAND: write( * ); break;
// case ENUM::Q_COV_S: write( * ); break;
// case ENUM::Q_COV_HSP:
case BlastMatchField<>::Enum::LCA_ID:
if (length(record.lcaId))
{
// replace whitespace with _
std::string buf;
resize(buf, length(record.lcaId));
std::transform(seqan2::begin(record.lcaId, Standard()), seqan2::end(record.lcaId, Standard()), std::begin(buf), [] (auto const c)
{
return ((c == ' ') || (c == '\t')) ? '_' : c;
});
write(s, buf);
}
else
{
write(s, "n/a");
}
break;
case BlastMatchField<>::Enum::LCA_TAX_ID:
write(s, record.lcaTaxId);
break;
default:
write(s, "n/i"); // not implemented
};
}
// ----------------------------------------------------------------------------
// Function _writeMatch()
// ----------------------------------------------------------------------------
template <typename TFwdIterator,
typename TScore,
typename ... TSpecs2,
typename ... TSpecs,
BlastProgram p,
BlastTabularSpec h>
inline void
_writeMatch(TFwdIterator & stream,
BlastIOContext<TScore, p, h> & context,
BlastMatch<TSpecs2...> const & match,
BlastRecord<TSpecs...> const & record,
BlastTabular const & /*tag*/)
{
if (SEQAN_LIKELY(!context.legacyFormat))
{
for (decltype(std::begin(context.fields)) it = std::begin(context.fields), itB = it, itEnd = std::end(context.fields); it != itEnd; ++it)
{
if (it != itB)
write(stream, '\t');
if (*it != BlastMatchField<>::Enum::STD)
{
_writeField(stream, context, match, record, *it, BlastTabular());
}
else // STD is placeholder for multiple fields
{
for (auto it2 = std::begin(BlastMatchField<>::defaults), it2B = it2,
it2End = std::end(BlastMatchField<>::defaults); it2 != it2End; ++it2)
{
if (it2 != it2B)
write(stream, '\t');
_writeField(stream, context, match, record, *it2, BlastTabular());
}
}
}
}
else
{
for (auto it = std::begin(BlastMatchField<>::defaults), itB = it,
itEnd = std::end(BlastMatchField<>::defaults); it != itEnd; ++it)
{
if (it != itB)
write(stream, '\t');
_writeField(stream, context, match, record, *it, BlastTabular());
}
#if SEQAN_ENABLE_DEBUG
if ((length(context.fields) != 1) || (context.fields[0] != BlastMatchField<>::Enum::STD))
std::cerr << "Warning: custom fields set, but will be ignored, because legacyFormat is also set.\n";
#endif
}
write(stream, '\n');
}
// ----------------------------------------------------------------------------
// Function writeRecord()
// ----------------------------------------------------------------------------
/*!
* @fn BlastTabularFileOut#writeRecord
* @headerfile seqan/blast.h
* @brief Write a @link BlastRecord @endlink including it's @link BlastMatch @endlinkes and possible comment lines to a file.
* @signature void writeRecord(blastTabularOut, blastRecord);
*
* @param[in,out] blastTabularOut A @link BlastTabularFileOut @endlink formattedFile.
* @param[in] blastRecord The @link BlastRecord @endlink you wish to print.
*
* @section Remarks
*
* This function first writes the comment lines of the record and then writes match lines for every match in it. If the
* context's @link BlastIOContext::tabularSpec @endlink is set to BlastTabularSpec::NO_COMMENTS, no
* comment lines will be written and this function immediately prints the match lines.
*
* @subsection Comment lines
*
* The contents of the comment lines is largely defined by the members of the context.
*
* If the context's @link BlastIOContext::versionString @endlink is set, this will be written,
* otherwise a stanadard version string is generated.
*
* The context's @link BlastIOContext::dbName @endlink is printed as the database name / path.
*
* If either the context's @link BlastIOContext::fields @endlink or
* @link BlastIOContext::fieldsAsStrings @endlink member are specified these will be printed
* as column labels. If both are specified than @link BlastIOContext::fieldsAsStrings @endlink
* is given preference. Please note that it is recommended to use
* @link BlastIOContext::fields @endlink and not @link BlastIOContext::fieldsAsStrings @endlink to stay
* "standards"-compliant. Also only @link BlastIOContext::fields @endlink has an influence on
* the values printed in the match lines.
*
* @subsection Matches
*
* Please note that BLAST is 1-indexed and considers the last position
* to be the back, not the end, i.e. last one included in a match/sequence/...,
* not the one behind it (as SeqAn does); this functions corrects for both of
* these bahaviours, so you don't have to. Additionally, based on the context's
* @link BlastIOContext::blastProgram @endlink, positions are transformed back to DNA space, if
* translation has taken place.
* Please note also that query and subject IDs are truncated at the first space
* character in NCBI BLAST, this is also done by default here.
*
* By setting the context's @link BlastIOContext::fields @endlink meber you can specify which columns you
* wish to print (if you don't want defaults); the same conversions mentioned above will me made. See
* @link BlastMatchField::Enum @endlink for a list of fields available. If the context's legacy-flag is set
* (@link BlastIOContext::legacyFormat @endlink) the @link BlastIOContext::fields @endlink
* variable is ignored.
*
* Many guides recommend always printing the default 12 columns and using only
* additional columns with additional (custom) data.
*
* @throw IOError On low-level I/O errors.
*
* @see BlastRecord
* @see BlastIOContext
*/
template <typename TFwdIterator,
typename TScore,
typename ... TSpecs,
BlastProgram p,
BlastTabularSpec h>
inline void
writeRecord(TFwdIterator & stream,
BlastIOContext<TScore, p, h> & context,
BlastRecord<TSpecs...> const & r,
BlastTabular const & /*tag*/)
{
//TODO if debug, do lots of sanity checks on record
//NOOP for TABULAR
_writeCommentLines(stream, context, r, BlastTabular());
for (auto it = r.matches.begin(); it != r.matches.end(); ++it)
{
//SOME SANITY CHECKS
SEQAN_ASSERT(startsWith(r.qId, it->qId));
_writeMatch(stream, context, *it, r, BlastTabular());
}
}
template <typename TContext,
typename ... TSpecs>
inline void
writeRecord(BlastTabularFileOut<TContext> & formattedFile,
BlastRecord<TSpecs...> const & r)
{
writeRecord(formattedFile.iter, context(formattedFile), r, BlastTabular());
}
// ----------------------------------------------------------------------------
// Function writeHeader()
// ----------------------------------------------------------------------------
/*!
* @fn BlastTabularFileOut#writeHeader
* @headerfile seqan/blast.h
* @brief Write the header (top-most section) of a BlastTabular file (this is a NOOP).
* @signature void writeHeader(blastTabularOut);
*
* @param[in,out] blastTabularOut A @link BlastTabularFileOut @endlink formattedFile.
*
* @throw IOError On low-level I/O errors.
*
* @see BlastRecord
* @see BlastIOContext
*/
template <typename TFwdIterator,
typename TScore,
BlastProgram p,
BlastTabularSpec h>
inline void
writeHeader(TFwdIterator & ,
BlastIOContext<TScore, p, h> &,
BlastTabular const & /*tag*/)
{
}
template <typename TContext>
inline void
writeHeader(BlastTabularFileOut<TContext> & formattedFile)
{
writeHeader(formattedFile.iter, context(formattedFile), BlastTabular());
}
// ----------------------------------------------------------------------------
// Function writeFooter()
// ----------------------------------------------------------------------------
/*!
* @fn BlastTabularFileOut#writeFooter
* @headerfile seqan/blast.h
* @brief Write the footer of a BlastTabular file.
* @signature void writeFooter(blastTabularOut);
*
* @param[in,out] blastTabularOut A @link BlastTabularFileOut @endlink formattedFile.
*
* @throw IOError On low-level I/O errors.
*
* @see BlastRecord
* @see BlastIOContext
*/
template <typename TFwdIterator,
typename TScore,
BlastProgram p,
BlastTabularSpec h>
inline void
writeFooter(TFwdIterator & stream,
BlastIOContext<TScore, p, h> & context,
BlastTabular const & /*tag*/)
{
if ((!context.legacyFormat) && (context.tabularSpec != BlastTabularSpec::NO_COMMENTS))
{
write(stream, "# BLAST processed ");
write(stream, context._numberOfRecords); // number of records equals number of queries
write(stream, " queries\n");
}
}
template <typename TContext>
inline void
writeFooter(BlastTabularFileOut<TContext> & formattedFile)
{
writeFooter(formattedFile.iter, context(formattedFile), BlastTabular());
}
} // namespace seqan2
#endif // header guard
|