Skip to content

Commit

Permalink
fix: adjusting to GTEx upstream URL change (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Dec 28, 2023
1 parent 307cf58 commit b3ec6d8
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions download_urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,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.googleapis.com/gtex_analysis_v8/annotations/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
- url: https://storage.cloud.google.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
excerpt_strategy:
strategy: no-excerpt
count: null

- url: https://storage.googleapis.com/gtex_analysis_v8/rna_seq_data/GTEx_Analysis_2017-06-05_v8_RNASeQCv1.1.9_gene_tpm.gct.gz
- 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
excerpt_strategy:
strategy: manual
count: null
Expand Down
3 changes: 0 additions & 3 deletions excerpt-data/2295c2a0487d0dab/url.txt

This file was deleted.

3 changes: 3 additions & 0 deletions excerpt-data/95e8d788836873e9/url.txt
Git LFS file not shown
3 changes: 0 additions & 3 deletions excerpt-data/9e484a896c7516d6/url.txt

This file was deleted.

3 changes: 3 additions & 0 deletions excerpt-data/d0a5951ccb4cd824/url.txt
Git LFS file not shown
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.googleapis.com/gtex_analysis_v8/annotations/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
https://storage.cloud.google.com/adult-gtex/bulk-gex/v8/rna-seq/GTEx_Analysis_v8_Annotations_SampleAttributesDS.txt
wget --no-check-certificate \
-O {output.genes_tpm} \
https://storage.googleapis.com/gtex_analysis_v8/rna_seq_data/GTEx_Analysis_2017-06-05_v8_RNASeQCv1.1.9_gene_tpm.gct.gz
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
md5sum {output.attributes} > {output.attributes_md5}
md5sum {output.genes_tpm} > {output.genes_tpm_md5}
Expand Down

0 comments on commit b3ec6d8

Please sign in to comment.