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
|
// -----------------------------------------------------------------------------------------------------
// Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
// Copyright (c) 2016-2020, 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/seqan3/blob/master/LICENSE.md
// -----------------------------------------------------------------------------------------------------
#include <iostream>
#include <gtest/gtest.h>
#include <seqan3/alphabet/nucleotide/dna5.hpp>
#include <seqan3/range/concept.hpp>
#include <seqan3/range/views/to_rank.hpp>
#include <seqan3/range/views/to.hpp>
#include <seqan3/std/ranges>
using seqan3::operator""_dna5;
TEST(view_to_rank, basic)
{
seqan3::dna5_vector vec{"ACTTTGATA"_dna5};
std::vector<uint8_t> cmp{0,1,4,4,4,2,0,4,0};
// pipe notation
std::vector<uint8_t> v = vec | seqan3::views::to_rank | seqan3::views::to<std::vector>;
EXPECT_EQ(cmp, v);
// function notation
std::vector<uint8_t> v2(seqan3::views::to_rank(vec) | seqan3::views::to<std::vector>);
EXPECT_EQ(cmp, v2);
// combinability
std::vector<uint8_t> cmp2{0, 4, 0, 2, 4, 4, 4, 1, 0};
std::vector<uint8_t> v3 = vec | seqan3::views::to_rank | std::views::reverse | seqan3::views::to<std::vector>;
EXPECT_EQ(cmp2, v3);
}
TEST(view_to_rank, concepts)
{
seqan3::dna5_vector vec{"ACTTTGATA"_dna5};
EXPECT_TRUE(std::ranges::input_range<decltype(vec)>);
EXPECT_TRUE(std::ranges::forward_range<decltype(vec)>);
EXPECT_TRUE(std::ranges::bidirectional_range<decltype(vec)>);
EXPECT_TRUE(std::ranges::random_access_range<decltype(vec)>);
EXPECT_FALSE(std::ranges::view<decltype(vec)>);
EXPECT_TRUE(std::ranges::sized_range<decltype(vec)>);
EXPECT_TRUE(std::ranges::common_range<decltype(vec)>);
EXPECT_TRUE(seqan3::const_iterable_range<decltype(vec)>);
EXPECT_TRUE((std::ranges::output_range<decltype(vec), seqan3::dna5>));
auto v1 = vec | seqan3::views::to_rank;
EXPECT_TRUE(std::ranges::input_range<decltype(v1)>);
EXPECT_TRUE(std::ranges::forward_range<decltype(v1)>);
EXPECT_TRUE(std::ranges::bidirectional_range<decltype(v1)>);
EXPECT_TRUE(std::ranges::random_access_range<decltype(v1)>);
EXPECT_TRUE(std::ranges::view<decltype(v1)>);
EXPECT_TRUE(std::ranges::sized_range<decltype(v1)>);
EXPECT_TRUE(std::ranges::common_range<decltype(v1)>);
EXPECT_TRUE(seqan3::const_iterable_range<decltype(v1)>);
EXPECT_FALSE((std::ranges::output_range<decltype(v1), seqan3::dna5>));
EXPECT_FALSE((std::ranges::output_range<decltype(v1), uint8_t>));
}
|