#![allow(unused)]
use helicase::input::*;
use helicase::*;
const CONFIG: Config = ParserOptions::default()
.dna_packed()
.return_record(false)
.config();
fn main() {
let path = std::env::args().nth(1).expect("No input file given");
let mut parser = FastxParser::<CONFIG>::from_file(&path).expect("Cannot open file");
while let Some(_event) = parser.next() {
let header = parser.get_header();
let seq = parser.get_dna_packed();
let packed_seq = parser.get_packed_seq();
}
}