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
|
#include <fstream>
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/std/filesystem>
struct write_file_dummy_struct
{
std::filesystem::path const tmp_path = std::filesystem::temp_directory_path();
write_file_dummy_struct()
{
auto file_raw = R"////![fastq_file]";
std::ofstream file{tmp_path/"my.fastq"};
std::string str{file_raw};
file << str.substr(1); // skip first newline
}
~write_file_dummy_struct()
{
std::error_code ec{};
std::filesystem::path file_path{};
file_path = tmp_path/"my.fastq";
std::filesystem::remove(file_path, ec);
if (ec)
seqan3::debug_stream << "[WARNING] Could not delete " << file_path << ". " << ec.message() << '\n';
file_path = tmp_path/"output.fastq";
std::filesystem::remove(file_path, ec);
if (ec)
seqan3::debug_stream << "[WARNING] Could not delete " << file_path << ". " << ec.message() << '\n';
}
};
write_file_dummy_struct go{};
//![solution]
#include <seqan3/io/sequence_file/all.hpp>
#include <seqan3/range/views/persist.hpp>
#include <seqan3/std/filesystem>
#include <seqan3/std/ranges>
int main()
{
#if !SEQAN3_WORKAROUND_GCC_93983
std::filesystem::path tmp_dir = std::filesystem::temp_directory_path(); // get the temp directory
seqan3::sequence_file_input fin{tmp_dir/"my.fastq"};
seqan3::sequence_file_output fout{tmp_dir/"output.fastq"};
auto length_filter = std::views::filter([] (auto & rec)
{
return std::ranges::size(seqan3::get<seqan3::field::seq>(rec)) >= 5;
});
fout = fin | length_filter;
// This would also work:
// fin | length_filter | fout;
#endif // !SEQAN3_WORKAROUND_GCC_93983
}
//![solution]
|