1 | // $Id: bam_pair_iterator.cc 3197 2014-04-29 01:40:53Z peter $ |
---|
2 | // |
---|
3 | // Copyright (C) 2014 Peter Johansson |
---|
4 | // |
---|
5 | // This program is free software; you can redistribute it and/or modify |
---|
6 | // it under the terms of the GNU General Public License as published by |
---|
7 | // the Free Software Foundation; either version 3 of the License, or |
---|
8 | // (at your option) any later version. |
---|
9 | // |
---|
10 | // This program is distributed in the hope that it will be useful, but |
---|
11 | // WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
13 | // General Public License for more details. |
---|
14 | // |
---|
15 | // You should have received a copy of the GNU General Public License |
---|
16 | // along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | |
---|
18 | #include <config.h> |
---|
19 | |
---|
20 | #include "Suite.h" |
---|
21 | |
---|
22 | #ifdef HAVE_LIBBAM |
---|
23 | #include "yat/omic/BamFile.h" |
---|
24 | #include "yat/omic/BamPairIterator.h" |
---|
25 | #include "yat/omic/BamRead.h" |
---|
26 | #include "yat/omic/BamReadIterator.h" |
---|
27 | #include "yat/omic/BamWriteIterator.h" |
---|
28 | #endif |
---|
29 | |
---|
30 | #include <algorithm> |
---|
31 | #include <cassert> |
---|
32 | #include <string> |
---|
33 | |
---|
34 | using namespace theplu::yat; |
---|
35 | using namespace omic; |
---|
36 | |
---|
37 | void test1(test::Suite& suite); |
---|
38 | |
---|
39 | int main(int argc, char* argv[]) |
---|
40 | { |
---|
41 | test::Suite suite(argc, argv); |
---|
42 | #ifndef HAVE_LIBBAM |
---|
43 | suite.out() << "no libbam\n"; |
---|
44 | return EXIT_SKIP; |
---|
45 | #endif |
---|
46 | #ifndef HAVE_SAMTOOLS |
---|
47 | suite.out() << "no samtools\n"; |
---|
48 | return EXIT_SKIP; |
---|
49 | #endif |
---|
50 | try { |
---|
51 | test1(suite); |
---|
52 | } |
---|
53 | catch (std::runtime_error& e) { |
---|
54 | suite.add(false); |
---|
55 | suite.err() << "error: what: " << e.what() << "\n"; |
---|
56 | } |
---|
57 | return suite.return_value(); |
---|
58 | } |
---|
59 | |
---|
60 | #ifdef HAVE_LIBBAM |
---|
61 | using namespace omic; |
---|
62 | |
---|
63 | void test1(test::Suite& suite) |
---|
64 | { |
---|
65 | std::string file = "../../data/foo.sorted.bam"; |
---|
66 | |
---|
67 | InBamFile in(file); |
---|
68 | BamReadIterator iter(in); |
---|
69 | BamReadIterator end; |
---|
70 | |
---|
71 | std::vector<BamPair> result; |
---|
72 | BamPairIterator<BamReadIterator> piter(iter, end); |
---|
73 | BamPairIterator<BamReadIterator> pend(end, end); |
---|
74 | for (; piter!=pend; ++piter) { |
---|
75 | result.push_back(*piter); |
---|
76 | result.back() = *piter; |
---|
77 | // This code doesn't work with boost 1.48 (or older). See |
---|
78 | // https://svn.boost.org/trac/boost/ticket/5697 for details. It's |
---|
79 | // not obvious the fix was included in v1.49, but let's test here |
---|
80 | // and if it wasn't modify this test accordingly and update the |
---|
81 | // docs in 'yat/omic/BamPairIterator.h'. |
---|
82 | result.back().first() = piter->first(); |
---|
83 | result.back().second() = piter->second(); |
---|
84 | } |
---|
85 | // not really doing anything since we've already iterated through |
---|
86 | // the range, but checking that bam_pair_iterator functions compile |
---|
87 | std::copy(bam_pair_iterator(iter, end), bam_pair_iterator(end), |
---|
88 | result.begin()); |
---|
89 | |
---|
90 | in.close(); |
---|
91 | if (!suite.add(result.size())) |
---|
92 | suite.err() << "error: empty result\n"; |
---|
93 | |
---|
94 | // suite.test_input_iterator(piter); |
---|
95 | } |
---|
96 | #endif |
---|