Skip to content

Commit 0797f2d

Browse files
authored
feat: updating annonars genes with ClinGen dosage & DOMINO (#65)
1 parent bbcf2f2 commit 0797f2d

File tree

18 files changed

+62
-122
lines changed

18 files changed

+62
-122
lines changed

Snakefile

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ rule all:
8585
# == work directory =====================================================================
8686
#
8787
# genes
88-
f"work/download/genes/clingen/{DV.clingen_gene}/clingen.csv",
8988
f"work/download/genes/rcnv/2022/Collins_rCNV_2022.dosage_sensitivity_scores.tsv.gz",
9089
f"work/download/genes/orphapacket/{DV.orphapacket}/orphapacket.tar.gz",
9190
f"work/genes/dbnsfp/{DV.dbnsfp}/genes.tsv.gz",
@@ -99,6 +98,9 @@ rule all:
9998
f"work/genes/orphapacket/{DV.orphapacket}+{DV.today}/orpha_diseases.tsv",
10099
"work/genes/rcnv/2022/rcnv_collins_2022.tsv",
101100
"work/genes/shet/2019/shet_weghorn_2019.tsv",
101+
f"work/genes/clingen/{DV.today}/ClinGen_gene_curation_list_GRCh37.tsv",
102+
f"work/genes/clingen/{DV.today}/ClinGen_gene_curation_list_GRCh38.tsv",
103+
"work/genes/domino/20190219/domino.tsv",
102104
# reference-specific annotations
103105
# -- background/population sequence variants and annotations thereof
104106
# ---- GRCh37
@@ -132,7 +134,6 @@ rule all:
132134
f"work/annos/grch38/features/cons/{DV.ucsc_cons_38}/ucsc_conservation.tsv",
133135
f"work/annos/grch38/features/ensembl/{DV.ensembl_38}/ensembl_genes.bed.gz",
134136
f"work/annos/grch38/features/refseq/{DV.refseq_38}/refseq_genes.bed.gz",
135-
# f"work/annos/grch38/features/clingen_dosage/{DV.today}/clingen_dosage_sensitivity_regions.bed.gz",
136137
#
137138
# == output directory ===================================================================
138139
#
@@ -163,9 +164,6 @@ rule all:
163164
# ----- conservation
164165
f"output/full/annonars/cons-grch37-{DV.ucsc_cons_37}+{PV.annonars}/rocksdb/IDENTITY",
165166
f"output/full/annonars/cons-grch38-{DV.ucsc_cons_38}+{PV.annonars}/rocksdb/IDENTITY",
166-
# ----- features
167-
f"output/full/annonars/clingen-dosage-grch37/{DV.today}/clingen_region_curation_list.bed.gz",
168-
f"output/full/annonars/clingen-dosage-grch38/{DV.today}/clingen_region_curation_list.bed.gz",
169167
# ----- genes
170168
f"output/full/annonars/genes-{DV.acmg_sf}+{DV.gnomad_constraints}+{DV.dbnsfp}+{DV.hpo}+{DV.orphapacket}+{DV.today}+{PV.annonars}/rocksdb/IDENTITY",
171169
# -- worker data
@@ -341,11 +339,12 @@ include: "rules/work/genes/omim.smk"
341339
include: "rules/work/genes/orphapacket.smk"
342340
include: "rules/work/genes/rcnv.smk"
343341
include: "rules/work/genes/shet.smk"
342+
include: "rules/work/genes/domino.smk"
343+
include: "rules/work/genes/clingen.smk"
344344
# Reference sequence--related rules.
345345
include: "rules/work/reference/human.smk"
346346
# Features (position and not variant specific).
347347
include: "rules/work/annos/features/cons.smk"
348-
include: "rules/work/annos/features/clingen_dosage.smk"
349348
include: "rules/work/annos/features/ensembl.smk"
350349
include: "rules/work/annos/features/refseq.smk"
351350
include: "rules/work/annos/features/tads.smk"
@@ -381,8 +380,6 @@ include: "rules/output/annonars/gnomad_genomes.smk"
381380
include: "rules/output/annonars/gnomad_mtdna.smk"
382381
include: "rules/output/annonars/helix.smk"
383382
include: "rules/output/annonars/genes.smk"
384-
# ------ features
385-
include: "rules/output/annonars/clingen_dosage.smk"
386383
# ---- worker
387384
include: "rules/output/worker/patho_mms.smk"
388385
include: "rules/output/worker/clinvar.smk"

bundled-data/domino/get.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:48bd163d94781c41cb31a33bbad006f5233202758346037685fda4a018ed8a75
3+
size 108
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:0e8559bcc8078f0312d69981813a2dc6968664e0ce4392984e93e76e30c47200
3+
size 2379134

download_urls.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
- url: ftp://ftp.clinicalgenome.org/ClinGen_region_curation_list_GRCh37.tsv
44
- url: ftp://ftp.clinicalgenome.org/ClinGen_region_curation_list_GRCh38.tsv
5+
- url: ftp://ftp.clinicalgenome.org/ClinGen_gene_curation_list_GRCh37.tsv
6+
- url: ftp://ftp.clinicalgenome.org/ClinGen_gene_curation_list_GRCh38.tsv
57

68
- url: https://storage.googleapis.com/gtex_analysis_v8/annotations/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
79
excerpt_strategy:
@@ -23,9 +25,6 @@
2325
- comment: The curation activity summary report is built in real-time.
2426
url: https://search.clinicalgenome.org/kb/reports/curation-activity-summary-report
2527

26-
- comment: ClinGen variant summary is built in real-time
27-
url: http://erepo.clinicalgenome.org/evrepo/api/classifications/all?format=tabbed
28-
2928
- url: https://github.com/bihealth/annonars-data-clinvar/releases/download/clinvar-weekly-20230625/clinvar-strucvar-grch37-2023-0625+0.6.3.tar.gz
3029
excerpt_strategy:
3130
strategy: no-excerpt

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies:
4141
# Parallel (de)compression.
4242
- pigz
4343
# Varfish related
44-
- annonars =0.18.0
44+
- annonars =0.27.0
4545
- viguno =0.1.6
4646
- mehari =0.18.1
4747
- varfish-server-worker =0.10.1

excerpt-data/0a27656c7f2ba08a/all

Lines changed: 0 additions & 3 deletions
This file was deleted.

excerpt-data/0a27656c7f2ba08a/url.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:e818e7ae751c36013377640bf29093a77d08a53eefd5adb6c3e769b982351dfc
3+
size 15862
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:f6cde2620cd50f150d2e0974eae1676e0ae4fe6691c86721a89fa5cab8c5f256
3+
size 67
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:2c401cc2cb6aeda93c1d1b633603ffb6ea15efc049694e18bdfd21894308e4f6
3+
size 15860

0 commit comments

Comments
 (0)