Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
tmokveld committed Nov 1, 2023
0 parents commit ed5e6ed
Show file tree
Hide file tree
Showing 26 changed files with 6,469 additions and 0 deletions.
1,352 changes: 1,352 additions & 0 deletions Cargo.lock

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[package]
name = "trgt-denovo"
version = "0.1.0"
authors = ["Tom Mokveld", "Egor Dolzhenko"]
description = """
trgt-denovo is a CLI tool for targeted de novo tandem repeat calling from long-read HiFI sequencing data.
"""
edition = "2021"
build = "build.rs"

[build-dependencies]
vergen = { version = "8.0.0", features = ["git", "gitcl"] }

[[bin]]
bench = false
path = "src/main.rs"
name = "trgt-denovo"

[dependencies]
serde = { version = "1.0.150", features = ["derive"] }
wfa2-sys = { version = "*", git = "https://github.com/ctsa/rust-wfa2.git", rev = "6e1d1dd" }
clap = { version = "4.0.18", features = ["suggestions", "derive"] }
itertools = "*"
log = "*"
env_logger = "*"
rand = "0.8.5"
threadpool = "*"
chrono = "*"
csv = "*"
ndarray = "*"
# flate2 = { version = "1.0.20", default-features = false, features = ["zlib-ng"] } # Options: zlib-ng, zlib, zlib-ng-compat
noodles = { version = "*", features = ["vcf", "fasta", "core", "bam", "sam", "bgzf", "bed"] }
once_cell = "*"
rayon = "*"
anyhow = "*"
Loading

0 comments on commit ed5e6ed

Please sign in to comment.