Skip to content

Commit 7352622

Browse files
authored
Merge pull request #2 from PacificBiosciences/v1.0.0
Version 1.0 - Major improvements to D4Z4, now reporting a comprehensive set of information for all D4Z4 alleles in a sample.
2 parents 99293fd + 4e2ada5 commit 7352622

81 files changed

Lines changed: 43372 additions & 236 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 3117 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[package]
2+
name = "kivvi"
3+
version = "1.0.0"
4+
authors = ["Xiao Chen <xchen@pacificbiosciences.com>"]
5+
description = "Kivvi: KIV2/D4Z4 genotyper using HiFi WGS data"
6+
edition = "2021"
7+
8+
[workspace]
9+
members = ["crates/paraphase"]
10+
11+
[dependencies]
12+
clap = { version = "=4.0", features = ["derive"] }
13+
chrono = "0.4.24"
14+
log = "0.4.17"
15+
env_logger = "0.9.1"
16+
lazy_static = "1.4.0"
17+
itertools = "0.10.5"
18+
url = "2.4.1"
19+
rust-htslib = { version = "0.49.0", default-features = false, features = ["static"] }
20+
minimap2 = { version = "0.1.23", features = ["simde", "htslib", "static"]}
21+
threadpool = "1.8.1"
22+
simple-error = "0.3"
23+
static_assertions = "1.1.0"
24+
serde_json = {version = "1.0.48", features = ["std", "arbitrary_precision"]}
25+
serde = { version = "1.0.104", features = ["derive"] }
26+
regex = "1.3.9"
27+
rand = {version = "0.8.5", features = ["small_rng"]}
28+
tempfile = "3.3.0"
29+
counter = "0.5.7"
30+
bit-vec = "0.6.3"
31+
priority-queue = "1.2.3"
32+
rustc-hash = "1.1.0"
33+
strum_macros = "0.27.1"
34+
thiserror = "1.0.56"
35+
paraphase = { path = "crates/paraphase" }
36+

0 commit comments

Comments
 (0)