Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jan 4, 2024
1 parent 2f61cc7 commit 98204da
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions download_urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@
- url: ftp://ftp.clinicalgenome.org/ClinGen_gene_curation_list_GRCh37.tsv
- url: ftp://ftp.clinicalgenome.org/ClinGen_gene_curation_list_GRCh38.tsv

- url: https://storage.cloud.google.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
- url: https://storage.googleapis.com/adult-gtex/annotations/v8/metadata-files/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
excerpt_strategy:
strategy: no-excerpt
count: null

- url: https://storage.cloud.google.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_2017-06-05_v8_RNASeQCv1.1.9_gene_tpm.gct.gz
- url: https://storage.googleapis.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_2017-06-05_v8_RNASeQCv1.1.9_gene_tpm.gct.gz
excerpt_strategy:
strategy: manual
count: null
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies:
# Parallel (de)compression.
- pigz
# Varfish related
- annonars =0.32.0
- annonars =0.33.0
- viguno =0.2.0
- mehari =0.21.1
- varfish-server-worker =0.10.2
Expand Down
3 changes: 3 additions & 0 deletions excerpt-data/4c4ffa6ddc180f40/url.txt
Git LFS file not shown
3 changes: 3 additions & 0 deletions excerpt-data/4efb53cbe56f8290/url.txt
Git LFS file not shown
3 changes: 0 additions & 3 deletions excerpt-data/95e8d788836873e9/url.txt

This file was deleted.

3 changes: 0 additions & 3 deletions excerpt-data/d0a5951ccb4cd824/url.txt

This file was deleted.

2 changes: 2 additions & 0 deletions rules/output/annonars/genes.smk
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ rule output_annonars_genes: # -- build annonars genes RocksDB file
ncbi="work/genes/entrez/{date}/gene_info.jsonl",
omim="work/genes/omim/{v_hpo}+{date}/omim_diseases.tsv",
orpha="work/genes/orphapacket/{v_orpha}+{date}/orpha_diseases.tsv",
panelapp="work/download/genes/panelapp/{date}/panelapp.jsonl",
rcnv="work/genes/rcnv/2022/rcnv_collins_2022.tsv",
shet="work/genes/shet/2019/shet_weghorn_2019.tsv",
gtex="work/genes/annonars/gtex_v8/genes_tpm.jsonl.gz",
Expand Down Expand Up @@ -44,6 +45,7 @@ rule output_annonars_genes: # -- build annonars genes RocksDB file
--path-in-hgnc {input.hgnc} \
--path-in-omim {input.omim} \
--path-in-orpha {input.orpha} \
--path-in-panelapp {input.panelapp} \
--path-in-ncbi {input.ncbi} \
--path-in-rcnv {input.rcnv} \
--path-in-shet {input.shet} \
Expand Down
4 changes: 2 additions & 2 deletions rules/work/genes/gtex.smk
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ rule genes_gtex_v8_download: # -- download GTex v8 gene expression data
r"""
wget --no-check-certificate \
-O {output.attributes} \
https://storage.cloud.google.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
https://storage.googleapis.com/adult-gtex/annotations/v8/metadata-files/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
wget --no-check-certificate \
-O {output.genes_tpm} \
https://storage.cloud.google.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_2017-06-05_v8_RNASeQCv1.1.9_gene_tpm.gct.gz
https://storage.googleapis.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_2017-06-05_v8_RNASeQCv1.1.9_gene_tpm.gct.gz
md5sum {output.attributes} > {output.attributes_md5}
md5sum {output.genes_tpm} > {output.genes_tpm_md5}
Expand Down

0 comments on commit 98204da

Please sign in to comment.