comparison snp_caller/src/Sam.h @ 0:0fd352f62446 draft default tip

planemo upload for repository https://github.com/ChrisD11/Duplicon commit 3ee0594c692faac542ffa58f4339d79b9b8aefbd-dirty
author chrisd
date Sun, 21 Feb 2016 06:05:24 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0fd352f62446
1 #ifndef SAM_H
2 #define SAM_H
3
4 #include "Alignment.h"
5
6 class Sam {
7 public:
8 Sam(std::string sam_fp);
9 void read_se_sam(const std::string &sam_fp, bool best);
10 void read_pe_sam(const std::string &sam_fp, bool best);
11 static void sort_by_qname(std::vector<Alignment> &v);
12
13 std::vector<Alignment> alignments;
14 private:
15 std::string _sam_fp;
16
17 };
18
19
20
21 #endif //SAM_H
22
23