-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 836 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "longcallR"
version = "2.0.1"
edition = "2021"
authors = ["Neng Huang <neng@ds.dfci.harvard.edu>"]
description = "A Rust tool for SNP calling and haplotype phasing with long RNA-seq reads."
license = "MIT"
repository = "https://github.com/huangnengCSU/longcallR"
homepage = "https://github.com/huangnengCSU/longcallR"
exclude = ["img/*", "demo/*", "target/*", "*.bam", "*.vcf"]
[dependencies]
rust-htslib = { version = "0.46.0", default-features = false }
rust-lapper = { version = "1.1.0", features = ["with_serde"] }
clap = { version = "4.4.4", features = ["derive"] }
bio = "1.3.1"
rayon = "1.8"
rand = "0.8.5"
mathru = "0.15.3"
probability = "0.20.3"
petgraph = "0.6.4"
itertools = "0.11.0"
noodles-vcf = "0.60.0"
lazy_static = "1.4.0"
flate2 = "1.0"
statrs = "0.16"
[profile.release]
#debug = true
opt-level = 3