ソースを参照

multiallelic normalization (just for INFO FREQ of dbsnp) for fetch_vcf, prefer normalized vcf...

Thomas 1 ヶ月 前
コミット
3ea0a26d87
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/io/vcf.rs

+ 1 - 1
src/io/vcf.rs

@@ -263,7 +263,7 @@ mod tests {
     #[test]
     fn vcf_dbsnp() -> anyhow::Result<()> {
         let config = Config::default();
-        let v = fetch_vcf(&config.db_snp, &GenomeRange::new("chr1", 5656, 5657))?;
+        let v = fetch_vcf(&config.db_snp, &GenomeRange::new("chr1", 5656, 5660))?;
         println!("{v:#?}");
         Ok(())
     }