rust-htslib 0.8.0

This library provides HTSlib bindings and a high level Rust API for reading and writing BAM files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![allow(non_snake_case)]


use htslib::vcf::{bcf1_t, bcf_hdr_t};


extern "C" {
    pub fn bcf_trim_alleles(hdr: *const bcf_hdr_t, line: *mut bcf1_t) -> ::libc::c_int;
}