Skip to content

Commit

Permalink
feat: transcript based annotation (#11) (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Mar 28, 2023
1 parent f63f8c2 commit 6677899
Show file tree
Hide file tree
Showing 50 changed files with 195,523 additions and 7,170 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
tests/data/db/create/txs/latest/** filter=lfs diff=lfs merge=lfs -text
tests/data/vars/*.vcf*
tests/data/vars/*.tsv*
*.bin filter=lfs diff=lfs merge=lfs -text
15 changes: 15 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ jobs:
needs: Formatting
runs-on: ubuntu-latest

strategy:
matrix:
include:
- label: fast
- label: full

services:
# The tests need a postgres server; the data will be loaded later
# after checkout.
Expand Down Expand Up @@ -109,10 +115,19 @@ jobs:
with:
version: 0.21.0
args: "-- --test-threads 1"
if: ${{ matrix.label == 'fast' }}

- name: Run cargo-tarpaulin with full tests
uses: actions-rs/[email protected]
with:
version: 0.21.0
args: "--release --timeout=180 -- --include-ignored"
if: ${{ matrix.label == 'full' }}

- name: Codecov submission of fast test results
uses: codecov/codecov-action@v3
with:
verbose: true
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
if: ${{ matrix.label == 'fast' }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/target
#/Cargo.lock

*:Zone.Identifier

*~
.*.sw?
/.vscode
Expand Down
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ clap-verbosity-flag = "2.0.0"
csv = "1.2.0"
flatbuffers = "23.1.21"
flate2 = "1.0.25"
hgvs = "0.3.1"
#hgvs = { git = "https://github.com/bihealth/hgvs-rs.git", branch = "main" }
#hgvs = { path = "/home/holtgrem_c/Development/hgvs-rs" }
hgvs = "0.4.0"
lazy_static = "1.4.0"
log = "0.4.17"
noodles = { version = "0.33.0", features = ["vcf", "bcf", "csi", "fasta", "bgzf", "tabix"] }
Expand All @@ -34,10 +36,17 @@ tracing = { version = "0.1.37", features = ["log"] }
tracing-subscriber = "0.3.16"
indicatif = "0.17.3"
thousands = "0.2.0"
memmap2 = "0.5.10"
bio = "1.1.0"
parse-display = "0.8.0"
nom = "7.1.3"
linked-hash-map = "0.5.6"
enumset = { version = "1.0.12", features = ["serde"] }

[build-dependencies]
flatc-rust = "0.2.0"

[dev-dependencies]
csv = "1.2.0"
pretty_assertions = "1.3.0"
temp_testdir = "0.2.3"
Binary file added clinvar.vcf.gz.tbi
Binary file not shown.
Loading

0 comments on commit 6677899

Please sign in to comment.