-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
74 lines (59 loc) · 1.46 KB
/
Cargo.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "FusionR"
version = "1.0.3"
authors = ["Emanuel Schmid-Siegert <essiegert@jsrlifesciences.com>"]
edition = "2018"
description = """
This suite contains multiple tools and libraries to identifies gene fusions from BAM files.
"""
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bambam = { git = "https://github.com/ebioman/bambam" }
rustc-hash = { version = "2.0.0", default-features = true }
rust-htslib = { version = "0.47.0", default-features = false }
regex = "1.11.0"
clap = "2.33.3"
csv = "1.1.6"
chrono = "0.4"
rayon = "1.10.0"
crossbeam ="0.8.1"
integer-sqrt="0.1.5"
statistical = "1.0.0"
noodles = { version = "0.83.0", features = ["bam","sam"] }
indexmap = "2.6.0"
linear-map = "1.2.0"
bio = "2.0.3"
tempfile = "3.13.0"
itertools = "0.13.0"
log = "0.4.22"
pretty_env_logger = "0.5.0"
human-sort = "0.2.2"
bstr = "1.10.0"
[[bin]]
name = "splitty"
path="src/bin/splitty.rs"
[[bin]]
name = "vcf_bnd_merge"
path="src/bin/vcf_bnd_merge.rs"
[[bin]]
name = "vcf_sv_cluster"
path="src/bin/vcf_bnd_cluster.rs"
[[bin]]
name = "cluster_test"
path="src/bin/bio_based.rs"
[[bin]]
name = "vcf_sv_subset"
path="src/bin/vcf_bnd_subset.rs"
[[bin]]
name = "vcf_bnd_2fasta"
path="src/bin/vcf_bnd_2fasta.rs"
[[bin]]
name = "vcf_chromremoval"
path = "src/bin/vcf_chromremoval.rs"
[[bin]]
name = "read2vcf"
path="src/bin/read2vcf.rs"
[lib]
name = "genefusion"
path = "src/libs.rs"