Chopper
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
prefixes.hpp
Go to the documentation of this file.
1// ---------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2023, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2023, 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/chopper/blob/main/LICENSE.md
6// ---------------------------------------------------------------------------------------------------
7
8#pragma once
9
10#include <string_view>
11
12#include <hibf/layout/prefixes.hpp>
13
15{
16
17constexpr std::string_view meta_chopper_user_bins_start{"@CHOPPER_USER_BINS"};
18static_assert(meta_chopper_user_bins_start.starts_with(seqan::hibf::prefix::meta_header));
19
20constexpr std::string_view meta_chopper_user_bins_end{"@CHOPPER_USER_BINS_END"};
21static_assert(meta_chopper_user_bins_end.starts_with(seqan::hibf::prefix::meta_header));
22
23constexpr std::string_view meta_chopper_config_start{"@CHOPPER_CONFIG"};
24static_assert(meta_chopper_config_start.starts_with(seqan::hibf::prefix::meta_header));
25
26constexpr std::string_view meta_chopper_config_end{"@CHOPPER_CONFIG_END"};
27static_assert(meta_chopper_config_end.starts_with(seqan::hibf::prefix::meta_header));
28
29} // namespace chopper::prefix
Definition: prefixes.hpp:15
constexpr std::string_view meta_chopper_config_end
Definition: prefixes.hpp:26
constexpr std::string_view meta_chopper_user_bins_start
Definition: prefixes.hpp:17
constexpr std::string_view meta_chopper_user_bins_end
Definition: prefixes.hpp:20
constexpr std::string_view meta_chopper_config_start
Definition: prefixes.hpp:23