SeqAn3 3.1.0
The Modern C++ library for sequence analysis.
complement.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2021, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2021, 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/seqan3/blob/master/LICENSE.md
6// -----------------------------------------------------------------------------------------------------
7
13#pragma once
14
15#include <seqan3/std/ranges>
16
19
20namespace seqan3::views
21{
67inline auto const complement = deep{std::views::transform([] (auto const in)
68{
69 static_assert(nucleotide_alphabet<decltype(in)>,
70 "The innermost value type must satisfy the nucleotide_alphabet.");
71 // call element-wise complement from the nucleotide_alphabet
72 return seqan3::complement(in);
73})};
74
75} // namespace seqan3::views
Provides seqan3::nucleotide_alphabet.
A wrapper type around an existing view adaptor that enables "deep view" behaviour for that view.
Definition: deep.hpp:104
Provides seqan3::views::deep.
constexpr auto complement
Return the complement of a nucleotide object.
Definition: concept.hpp:104
auto const complement
A view that converts a range of nucleotides to their complement.
Definition: complement.hpp:67
decltype(detail::transform< trait_t >(list_t{})) transform
Apply a transformation trait to every type in the list and return a seqan3::type_list of the results.
Definition: traits.hpp:471
A concept that indicates whether an alphabet represents nucleotides.
The SeqAn namespace for views.
Definition: char_to.hpp:22
The <ranges> header from C++20's standard library.