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
|
// --------------------------------------------------------------------------------------------------
// Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
// Copyright (c) 2016-2022, 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/raptor/blob/main/LICENSE.md
// --------------------------------------------------------------------------------------------------
#pragma once
#include <filesystem>
#include <seqan3/search/dream_index/interleaved_bloom_filter.hpp>
#include <raptor/index.hpp>
#include <raptor/strong_types.hpp>
namespace raptor
{
template <typename data_t, typename arguments_t>
static inline void
store_index(std::filesystem::path const & path, raptor_index<data_t> const & index, arguments_t const &)
{
std::ofstream os{path, std::ios::binary};
cereal::BinaryOutputArchive oarchive{os};
oarchive(index);
}
template <seqan3::data_layout layout, typename arguments_t>
static inline void store_index(std::filesystem::path const & path,
seqan3::interleaved_bloom_filter<layout> && ibf,
arguments_t const & arguments)
{
raptor_index<seqan3::interleaved_bloom_filter<layout>> index{window{arguments.window_size},
arguments.shape,
arguments.parts,
arguments.compressed,
arguments.bin_path,
std::move(ibf)};
std::ofstream os{path, std::ios::binary};
cereal::BinaryOutputArchive oarchive{os};
oarchive(index);
}
} // namespace raptor
|