pub fn read_fast5(file_name: &str) -> Result<Vec<Group>, Error>
Expand description

Open a fast5 and return a Vec containing the groups.

Panics

Will panic if no Groups are found, or there is an issue reading the FAST5 file.

Example

use frust5_api::read_fast5;
for group in read_fast5("FAL37440_pass_5e83140e_100.fast5")? {
    println!(group)
};