fastq_to_fasta
A template for creation of SeqAn3 apps, with a FASTQ to FASTA example app.
parse_bin_path.hpp
Go to the documentation of this file.
1 // --------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2022, Knut Reinert & MPI für molekulare Genetik
4 // This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5 // shipped with this file and also available at: https://github.com/seqan/raptor/blob/main/LICENSE.md
6 // --------------------------------------------------------------------------------------------------
7 
8 #pragma once
9 
12 
13 namespace raptor
14 {
15 
16 namespace detail
17 {
18 
19 void parse_bin_path(std::filesystem::path const & bin_file,
20  std::vector<std::vector<std::string>> & bin_path,
21  bool const is_socks,
22  bool const is_hibf);
23 
24 } // namespace detail
25 
26 void parse_bin_path(build_arguments & arguments);
27 void parse_bin_path(upgrade_arguments & arguments);
28 
29 } // namespace raptor
void parse_bin_path(std::filesystem::path const &bin_file, std::vector< std::vector< std::string >> &bin_path, bool const is_socks, bool const is_hibf)
Definition: parse_bin_path.cpp:18
Definition: adjust_seed.hpp:13
void parse_bin_path(build_arguments &arguments)
Definition: parse_bin_path.cpp:62
Definition: build_arguments.hpp:21
Definition: upgrade_arguments.hpp:19