Skip to content

Commit

Permalink
perf: update all wrapper to latest v3.5.3 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlaehnemann authored Mar 25, 2024
1 parent 3d53ced commit bc9ab71
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion workflow/rules/align.smk
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ rule align:
extra=lambda wc, input: f'--outSAMtype BAM SortedByCoordinate --quantMode GeneCounts --sjdbGTFfile {input.gtf} {config["params"]["star"]}',
threads: 24
wrapper:
"v1.21.4/bio/star/align"
"v3.5.3/bio/star/align"
2 changes: 1 addition & 1 deletion workflow/rules/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -193,4 +193,4 @@ rule multiqc:
log:
"logs/multiqc.log",
wrapper:
"v2.7.0/bio/multiqc"
"v3.5.3/bio/multiqc"
10 changes: 5 additions & 5 deletions workflow/rules/ref.smk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rule get_genome:
release=config["ref"]["release"],
cache: True
wrapper:
"v1.21.4/bio/reference/ensembl-sequence"
"v3.5.3/bio/reference/ensembl-sequence"


rule get_annotation:
Expand All @@ -26,7 +26,7 @@ rule get_annotation:
log:
"logs/get_annotation.log",
wrapper:
"v1.21.4/bio/reference/ensembl-annotation"
"v3.5.3/bio/reference/ensembl-annotation"


rule genome_faidx:
Expand All @@ -38,7 +38,7 @@ rule genome_faidx:
"logs/genome-faidx.log",
cache: True
wrapper:
"v1.21.4/bio/samtools/faidx"
"v3.5.3/bio/samtools/faidx"


rule bwa_index:
Expand All @@ -52,7 +52,7 @@ rule bwa_index:
mem_mb=369000,
cache: True
wrapper:
"v1.21.4/bio/bwa/index"
"v3.5.3/bio/bwa/index"


rule star_index:
Expand All @@ -68,4 +68,4 @@ rule star_index:
"logs/star_index_genome.log",
cache: True
wrapper:
"v1.21.4/bio/star/index"
"v3.5.3/bio/star/index"
6 changes: 3 additions & 3 deletions workflow/rules/trim.smk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rule get_sra:
log:
"logs/get-sra/{accession}.log",
wrapper:
"v1.21.4/bio/sra-tools/fasterq-dump"
"v3.5.3/bio/sra-tools/fasterq-dump"


rule cutadapt_pipe:
Expand Down Expand Up @@ -36,7 +36,7 @@ rule cutadapt_pe:
adapters=lambda w: str(units.loc[w.sample].loc[w.unit, "adapters"]),
threads: 8
wrapper:
"v1.21.4/bio/cutadapt/pe"
"v3.5.3/bio/cutadapt/pe"


rule cutadapt_se:
Expand All @@ -52,4 +52,4 @@ rule cutadapt_se:
adapters=lambda w: str(units.loc[w.sample].loc[w.unit, "adapters"]),
threads: 8
wrapper:
"v1.21.4/bio/cutadapt/se"
"v3.5.3/bio/cutadapt/se"

0 comments on commit bc9ab71

Please sign in to comment.