Expand description
Open a fast5 and return a Vec containing the groups.
Will panic if no Groups are found, or there is an issue reading the FAST5 file.
use frust5_api::read_fast5;
for group in read_fast5("FAL37440_pass_5e83140e_100.fast5")? {
println!(group)
};