3 个不稳定版本

0.2.1 2024 年 5 月 10 日
0.2.0 2024 年 5 月 9 日
0.1.0 2024 年 5 月 3 日

#841解析器实现

MIT 许可证

61KB
1K SLoC

hmm_tblout

简单的解析 HMMER 的 HMMER::nhmmer --tblout ... 的表格输出。

示例

使用 cargo run --example print_coordinates ./data/test.tbl 运行此示例。

use hmm_tblout;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // get the command line args, only parse the
    // first one which should be a fasta file
    let args: Vec<String> = std::env::args().collect();
    if args.len() < 2 {
        println!("Usage: print_coordinates <tblout_file>");
        std::process::exit(1);
    }

    let reader = hmm_tblout::Reader::from_path(args[1].clone())?;

    for record in reader.into_records() {
        let r = record?;
        let tname = r.target_name();
        let strand = r.strand().unwrap();
        let alifrom = r.ali_from().unwrap();
        let alito = r.ali_to().unwrap();

        println!("{}\t{}\t{}\t{}", tname, strand, alifrom, alito);
    }

    Ok(())
}

待实现

未来可能会处理这些。或者,随时贡献!

  • 不处理描述列,因为可能包含空格。

No runtime deps