-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 880 Bytes
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 880 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
31
32
33
34
35
36
37
[package]
name = "haplograph"
version = "0.1.0"
edition = "2021"
authors = ["Hang Su <suhang@broadinstitute.org>"]
description = "A bioinformatics tool for haplotype analysis"
license = "MIT"
repository = "https://github.com/broadinstitute/haplograph"
keywords = ["bioinformatics", "haplotype", "genomics"]
categories = ["science::bio-informatics"]
[dependencies]
bio = "2.0.1"
ndarray = "0.16.1"
flate2 = "1.0.30"
serde_json = "1.0.120"
serde = "1.0.204"
rust-htslib = { version = "0.51.0", features = ["curl", "gcs"] }
rayon = "1.7"
csv = "1.2"
regex = "1.9.5"
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0"
log = "0.4"
env_logger = "0.10"
indicatif = "0.17"
url = "=2.5.4"
intervals = "2.1.0"
minimap2 = "0.1.30+minimap2.2.30"
itertools = "0.14.0"
rand = "0.9.2"
statrs = "0.18.0"
adjustp = "0.1.6"
nalgebra = "0.34.1"
[dev-dependencies]
criterion = "0.5"