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
|
// --------------------------------------------------------------------------------------------------
// 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 <sharg/parser.hpp>
#include <seqan3/io/sequence_file/input.hpp>
#include <raptor/strong_types.hpp>
namespace raptor::detail
{
static inline std::vector<std::string> sequence_extensions{
seqan3::detail::valid_file_extensions<typename seqan3::sequence_file_input<>::valid_formats>()};
static inline std::vector<std::string> compression_extensions{[]()
{
std::vector<std::string> result;
#ifdef SEQAN3_HAS_BZIP2
result.push_back("bz2");
#endif
#ifdef SEQAN3_HAS_ZLIB
result.push_back("gz");
result.push_back("bgzf");
#endif
return result;
}()}; // GCOVR_EXCL_LINE
static inline std::vector<std::string> combined_extensions{
[]()
{
if (compression_extensions.empty())
return sequence_extensions; // GCOVR_EXCL_LINE
std::vector<std::string> result;
for (auto && sequence_extension : sequence_extensions)
{
result.push_back(sequence_extension);
for (auto && compression_extension : compression_extensions)
result.push_back(sequence_extension + std::string{'.'} + compression_extension);
}
return result;
}()};
} // namespace raptor::detail
namespace raptor
{
struct power_of_two_validator
{
using option_value_type = size_t;
void operator()(option_value_type const & val) const
{
if (!std::has_single_bit(val))
throw sharg::validation_error{"The value must be a power of two."};
}
static std::string get_help_page_message()
{
return "Value must be a power of two.";
}
};
class positive_integer_validator
{
public:
using option_value_type = size_t;
positive_integer_validator() = default;
positive_integer_validator(positive_integer_validator const &) = default;
positive_integer_validator & operator=(positive_integer_validator const &) = default;
positive_integer_validator(positive_integer_validator &&) = default;
positive_integer_validator & operator=(positive_integer_validator &&) = default;
~positive_integer_validator() = default;
explicit positive_integer_validator(bool const is_zero_positive_) : is_zero_positive{is_zero_positive_}
{}
void operator()(window const & val) const
{
return operator()(val.v);
}
void operator()(option_value_type const & val) const
{
if (!is_zero_positive && !val)
throw sharg::validation_error{"The value must be a positive integer."};
}
std::string get_help_page_message() const
{
if (is_zero_positive)
return "Value must be a positive integer or 0.";
else
return "Value must be a positive integer.";
}
private:
bool is_zero_positive{false};
};
class size_validator
{
public:
using option_value_type = std::string;
size_validator() = default;
size_validator(size_validator const &) = default;
size_validator & operator=(size_validator const &) = default;
size_validator(size_validator &&) = default;
size_validator & operator=(size_validator &&) = default;
~size_validator() = default;
explicit size_validator(std::string const & pattern) : expression{pattern}
{}
void operator()(option_value_type const & cmp) const
{
if (!std::regex_match(cmp, expression))
throw sharg::validation_error{
seqan3::detail::to_string("Value ",
cmp,
" must be an integer followed by [k,m,g,t] (case insensitive).")};
}
template <std::ranges::forward_range range_type>
requires std::convertible_to<std::ranges::range_value_t<range_type>, option_value_type const &>
void operator()(range_type const & v) const
{
std::for_each(v.begin(),
v.end(),
[&](auto cmp)
{
(*this)(cmp);
});
}
std::string get_help_page_message() const
{
return "Must be an integer followed by [k,m,g,t] (case insensitive).";
}
private:
std::regex expression;
};
class bin_validator
{
public:
using option_value_type = std::vector<std::vector<std::string>>;
bin_validator() = default;
bin_validator(bin_validator const &) = default;
bin_validator & operator=(bin_validator const &) = default;
bin_validator(bin_validator &&) = default;
bin_validator & operator=(bin_validator &&) = default;
~bin_validator() = default;
void operator()(option_value_type const & values) const
{
if (values.empty())
throw sharg::validation_error{"The list of input files cannot be empty."};
bool const is_minimiser_input = std::filesystem::path{values[0][0]}.extension() == ".minimiser";
for (std::vector<std::string> const & vector_of_paths : values)
{
for (std::string const & value : vector_of_paths)
{
std::filesystem::path const file_path{value};
if (is_minimiser_input && (file_path.extension() != ".minimiser"))
throw sharg::validation_error{"You cannot mix sequence and minimiser files as input."};
if (std::filesystem::file_size(file_path) == 0u)
throw sharg::validation_error{"The file " + value + " is empty."};
if (is_minimiser_input)
minimiser_file_validator(file_path);
else
sequence_file_validator(file_path);
}
}
}
std::string get_help_page_message() const
{
// Update
return seqan3::detail::to_string("The file must contain at least one file path per line, with multiple paths "
"being separated by a whitespace. Each line in the file corresponds to one "
"bin. Valid extensions for the paths in the file are [minimiser] when "
" preprocessing, and ",
raptor::detail::sequence_extensions,
#if defined(SEQAN3_HAS_BZIP2) || defined(SEQAN3_HAS_ZLIB)
", possibly followed by ",
raptor::detail::compression_extensions,
#endif
" otherwise. ");
}
private:
sharg::input_file_validator minimiser_file_validator{{"minimiser"}};
public:
sharg::input_file_validator sequence_file_validator{raptor::detail::combined_extensions};
};
} // namespace raptor
|