-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
name: varfish-db-downloader | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
|
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Rules related to the AlphaMissense scores | ||
|
||
|
||
rule annos_alphamissense_download: # -- download AlphaMissense data | ||
output: | ||
tsv="work/download/annos/alphamissense/1/{genome}/AlphaMissense_{genome}.tsv.gz", | ||
tsv_md5="work/download/annos/alphamissense/1/{genome}/AlphaMissense_{genome}.tsv.gz.md5", | ||
shell: | ||
r""" | ||
wget --no-check-certificate \ | ||
-O {output.tsv} \ | ||
https://storage.googleapis.com/dm_alphamissense/AlphaMissense_{wildcards.genome}.tsv.gz | ||
md5sum {output.tsv} >{output.tsv_md5} | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Rules related to AlphaMissense per-gene scores | ||
|
||
|
||
rule genes_alphamissense_download: # -- download AlphaMissense per-gene scores | ||
output: | ||
tsv="work/download/genes/alphamissense/1/AlphaMissense_gene_hg38.tsv.gz", | ||
tsv_md5="work/download/genes/alphamissense/1/AlphaMissense_gene_hg38.tsv.gz.md5", | ||
shell: | ||
r""" | ||
wget --no-check-certificate \ | ||
-O {output.tsv} \ | ||
https://storage.googleapis.com/dm_alphamissense/AlphaMissense_gene_hg38.tsv.gz | ||
md5sum {output.tsv} > {output.tsv_md5} | ||
""" |