Skip to content

Commit

Permalink
fix: for some rules, omit software env when caching (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester authored Nov 4, 2022
1 parent a85b268 commit 1d2e3a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion workflow/Snakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from snakemake.utils import min_version

min_version("6.3.0")
min_version("7.17.0")


configfile: "config/config.yaml"
Expand Down
6 changes: 3 additions & 3 deletions workflow/rules/ref.smk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rule get_transcriptome:
release=config["resources"]["ref"]["release"],
wildcard_constraints:
type="cdna|cds|ncrna",
cache: True
cache: "omit-software"
wrapper:
"0.74.0/bio/reference/ensembl-sequence"

Expand All @@ -26,7 +26,7 @@ rule get_annotation:
fmt="gtf",
log:
"logs/get-annotation.log",
cache: True
cache: "omit-software"
wrapper:
"0.80.1/bio/reference/ensembl-annotation"

Expand All @@ -41,7 +41,7 @@ rule get_transcript_info:
"logs/get_transcript_info.log",
conda:
"../envs/biomart.yaml"
cache: True
cache: "omit-software"
script:
"../scripts/get-transcript-info.R"

Expand Down

0 comments on commit 1d2e3a9

Please sign in to comment.