Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump cdot to 0.2.27, snakemake wrappers #58

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ This repository contains a snakemake workflow to build mehari transcript databas

Databases are built for each combination of genome release (GRCh37, GRCh38) and reference source (ensembl, refseq):

- mehari-data `v0.7.0`
- mehari-data `v0.9.0`
- uses:
- mehari `v0.26.1`
- cdot: `v0.2.26`
- mehari `v0.30.1`
- cdot: `v0.2.27`
- `GRCh37-refseq`
- genome release: GRCh37.p13
- VEP/ENSEMBL equivalent: `105`
Expand Down
12 changes: 6 additions & 6 deletions config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ reference:
sources:
GRCh38-refseq:
cdot:
release: 0.2.26
release: 0.2.27
custom: GCF_000001405.40_GRCh38.p14_genomic.110.gff
known_issues:
- id_type: gene_symbol
Expand Down Expand Up @@ -110,7 +110,7 @@ sources:

GRCh37-refseq:
cdot:
release: 0.2.26
release: 0.2.27
custom: GCF_000001405.25_GRCh37.p13_genomic.105.20201022.gff
known_issues:
- id_type: gene_symbol
Expand Down Expand Up @@ -151,8 +151,8 @@ sources:
# (rules::cdot::cdot_chrMT expects 'GRCh38-ensembl' to be defined)
GRCh38-ensembl:
cdot:
release: 0.2.26
custom: ensembl.Homo_sapiens.GRCh38.112.gff3
release: 0.2.27
custom: ensembl.Homo_sapiens.GRCh38.112.gtf
known_issues:
- id_type: hgnc_id
id: "HGNC:32925"
Expand Down Expand Up @@ -213,8 +213,8 @@ sources:
description: novel gene/transcript without HGNC id
GRCh37-ensembl:
cdot:
release: 0.2.26
custom: ensembl.Homo_sapiens.GRCh37.87.gff3
release: 0.2.27
custom: ensembl.Homo_sapiens.GRCh37.87.gtf
known_issues:
- id_type: gene_symbol
id: "ATXN8"
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/download.smk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rule get_ensembl_sequence:
"logs/{assembly}-ensembl/get_ensembl_sequence.{datatype}.log",
cache: "omit-software" # save space and time with between workflow caching (see docs)
wrapper:
"v3.11.0/bio/reference/ensembl-sequence"
"v5.0.2/bio/reference/ensembl-sequence"


rule merge_ensembl_sequence:
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/validate.smk
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ rule datavzrd:
log:
"logs/datavzrd_report/{assembly}-{source}/seqrepo/check_mehari_db.log",
wrapper:
"v3.13.1/utils/datavzrd"
"v5.0.2/utils/datavzrd"
Loading