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
|
// -----------------------------------------------------------------------------------------------------
// Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
// Copyright (c) 2016-2020, Knut Reinert & MPI für molekulare Genetik
// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
// shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
// -----------------------------------------------------------------------------------------------------
#include <benchmark/benchmark.h>
#include <seqan3/alignment/pairwise/align_pairwise.hpp>
#include <seqan3/io/alignment_file/input.hpp>
#include <seqan3/io/alignment_file/output.hpp>
#include <seqan3/test/performance/sequence_generator.hpp>
#include <seqan3/test/tmp_filename.hpp>
#if SEQAN3_HAS_SEQAN2
#include <seqan/bam_io.h>
#endif
// ============================================================================
// generate sam file from randomly generated sequence and store in file_dict
// ============================================================================
std::map<std::size_t, std::string> file_dict;
static std::string create_sam_file_string(size_t const n_queries)
{
if (file_dict.find(n_queries) == file_dict.end())
{
size_t const seed{1234u};
size_t const length_variance{0u};
size_t const reference_size{500u};
size_t const read_size{100u}; // typical illumina read
std::string const query_prefix{"query_"};
std::string const reference_id{"reference_id"};
// generate sequences
auto reference = seqan3::test::generate_sequence<seqan3::dna4>(reference_size, length_variance, seed);
// align
constexpr auto nt_score_scheme = seqan3::nucleotide_scoring_scheme{seqan3::match_score{4},
seqan3::mismatch_score{-2}};
auto config = seqan3::align_cfg::method_global{
seqan3::align_cfg::free_end_gaps_sequence1_leading{true},
seqan3::align_cfg::free_end_gaps_sequence2_leading{false},
seqan3::align_cfg::free_end_gaps_sequence1_trailing{true},
seqan3::align_cfg::free_end_gaps_sequence2_trailing{false}} |
seqan3::align_cfg::scoring_scheme{nt_score_scheme} |
seqan3::align_cfg::gap_cost_affine{seqan3::align_cfg::open_score{-10},
seqan3::align_cfg::extension_score{-1}} |
seqan3::align_cfg::output_begin_position{} |
seqan3::align_cfg::output_alignment{} |
seqan3::align_cfg::output_score{};
using sam_fields = seqan3::fields<seqan3::field::seq, seqan3::field::id, seqan3::field::offset,
seqan3::field::ref_seq, seqan3::field::ref_id, seqan3::field::ref_offset,
seqan3::field::alignment, seqan3::field::mapq, seqan3::field::qual,
seqan3::field::flag>;
std::ostringstream stream;
seqan3::alignment_file_output sam_out{stream, seqan3::format_sam{}, sam_fields{}};
for (size_t i = 0; i < n_queries; ++i)
{
auto query = seqan3::test::generate_sequence<seqan3::dna4>(read_size, length_variance, seed + i);
auto qualities = seqan3::test::generate_sequence<seqan3::phred42>(read_size, length_variance, seed + i);
auto align_result = *(seqan3::align_pairwise(std::tie(query, reference), config).begin());
std::string const current_query_id = query_prefix + std::to_string(i);
sam_out.emplace_back(query, // field::seq
current_query_id, // field::id
align_result.sequence1_begin_position(), // field::offset
reference, // field::ref_seq
reference_id, // field::ref_id
align_result.sequence2_begin_position(), // field::ref_offset
align_result.alignment(), // field::alignment
align_result.score(), // field::mapq
qualities, // field::qual
seqan3::sam_flag::none); // field::flag
}
file_dict[n_queries] = stream.str();
}
return file_dict[n_queries];
}
void write_file(std::string const & file_name, size_t const n_queries)
{
std::ofstream ostream{file_name};
ostream << create_sam_file_string(n_queries);
ostream.close();
}
// ============================================================================
// seqan3
// ============================================================================
void sam_file_read_from_stream(benchmark::State &state)
{
size_t const n_queries = state.range(0);
std::istringstream istream{create_sam_file_string(n_queries)};
for (auto _ : state)
{
// refill stream (same constant for seqan2 benchmark)
istream.clear();
istream.seekg(0, std::ios::beg);
seqan3::alignment_file_input fin{istream, seqan3::format_sam{}};
// read all records and store in internal buffer
auto it = fin.begin();
while (it != fin.end())
++it;
}
}
void sam_file_read_from_disk(benchmark::State &state)
{
size_t const n_queries = state.range(0);
seqan3::test::tmp_filename file_name{"tmp.sam"};
auto tmp_path = file_name.get_path();
write_file(tmp_path, n_queries);
for (auto _ : state)
{
seqan3::alignment_file_input fin{tmp_path};
// read all records and store in internal buffer
auto it = fin.begin();
while (it != fin.end())
++it;
}
}
#if SEQAN3_HAS_SEQAN2
// ============================================================================
// seqan2 read from stream
// ============================================================================
void seqan2_sam_file_read_from_stream(benchmark::State &state)
{
size_t const n_queries = state.range(0);
seqan3::test::tmp_filename file_name{"tmp.sam"};
std::string sam_file = create_sam_file_string(n_queries);
// create temporary BamFileIn and read from disk to get the context...
write_file(file_name.get_path(), n_queries);
seqan::BamHeader tmp_header;
seqan::BamFileIn tmp_bam_file_in(file_name.get_path().c_str());
seqan::readHeader(tmp_header, tmp_bam_file_in);
auto cxt = seqan::context(tmp_bam_file_in);
seqan::BamAlignmentRecord record;
seqan::BamHeader header;
std::istringstream istream{sam_file};
for (auto _ : state)
{
istream.clear();
istream.seekg(0, std::ios::beg);
auto it = seqan::Iter<std::istringstream, seqan::StreamIterator<seqan::Input> >(istream);
seqan::readHeader(header, cxt, it, seqan::Sam());
for (size_t i = 0; i < n_queries; ++i)
{
seqan::readRecord(record, cxt, it, seqan::Sam());
seqan::clear(record);
}
clear(header);
}
}
void seqan2_sam_file_read_from_disk(benchmark::State &state)
{
size_t const n_queries = state.range(0);
seqan3::test::tmp_filename file_name{"tmp.sam"};
auto tmp_path = file_name.get_path();
write_file(tmp_path, n_queries);
seqan::BamHeader header;
seqan::BamAlignmentRecord record;
for (auto _ : state)
{
seqan::BamFileIn bamFileIn(tmp_path.c_str());
seqan::readHeader(header, bamFileIn);
while (!seqan::atEnd(bamFileIn))
seqan::readRecord(record, bamFileIn);
seqan::clear(header);
seqan::clear(record);
}
}
#endif // SEQAN3_HAS_SEQAN2
#ifndef NDEBUG
static constexpr size_t low_query_count{5u};
static constexpr size_t high_query_count{10u};
#else
static constexpr size_t low_query_count{50u};
static constexpr size_t high_query_count{500u};
#endif // NDEBUG
BENCHMARK(sam_file_read_from_stream)->Arg(low_query_count);
BENCHMARK(sam_file_read_from_stream)->Arg(high_query_count);
BENCHMARK(sam_file_read_from_disk)->Arg(low_query_count);
BENCHMARK(sam_file_read_from_disk)->Arg(high_query_count);
#if SEQAN3_HAS_SEQAN2
BENCHMARK(seqan2_sam_file_read_from_stream)->Arg(low_query_count);
BENCHMARK(seqan2_sam_file_read_from_stream)->Arg(high_query_count);
BENCHMARK(seqan2_sam_file_read_from_disk)->Arg(low_query_count);
BENCHMARK(seqan2_sam_file_read_from_disk)->Arg(high_query_count);
#endif // SEQAN3_HAS_SEQAN2
BENCHMARK_MAIN();
|