-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhtslib_wrapper.hpp
More file actions
57 lines (43 loc) · 1.21 KB
/
htslib_wrapper.hpp
File metadata and controls
57 lines (43 loc) · 1.21 KB
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
/* Part of SMITHLAB_CPP software
*
* Copyright (C) 2019-2-23 Meng Zhou and Andrew Smith
*
* Authors: Meng Zhou and Andrew Smith
*
* This is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*/
#ifndef HTSLIB_WRAPPER_HPP
#define HTSLIB_WRAPPER_HPP
#include <htslib/sam.h>
#include <cstddef>
#include <string>
class sam_rec;
extern "C" {
char check_htslib_wrapper();
}
class SAMReader {
public:
SAMReader(const std::string &filename);
~SAMReader();
operator bool() const { return good; }
bool get_sam_record(sam_rec &sr);
void add_threads(const size_t n_threads);
std::string get_header() const;
private:
// data
std::string filename;
bool good;
htsFile *hts{};
bam_hdr_t *hdr{};
bam1_t *b{};
};
SAMReader &operator>>(SAMReader &sam_stream, sam_rec &samr);
#endif