slow5 0.12.1

Library for interacting with slow5
Documentation
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;
use slow5::{FileReader, RecordExt};

#[test]
fn main() -> Result<()> {
    let file_path = "examples/example.slow5";
    let slow5 = FileReader::open(file_path)?;
    let rec = slow5.get_record("r3")?;
    assert_eq!("r3".as_bytes(), rec.read_id());
    Ok(())
}