Skip to content

Commit bc9ab71

Browse files
authored
perf: update all wrapper to latest v3.5.3 (#78)
1 parent 3d53ced commit bc9ab71

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

workflow/rules/align.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ rule align:
1313
extra=lambda wc, input: f'--outSAMtype BAM SortedByCoordinate --quantMode GeneCounts --sjdbGTFfile {input.gtf} {config["params"]["star"]}',
1414
threads: 24
1515
wrapper:
16-
"v1.21.4/bio/star/align"
16+
"v3.5.3/bio/star/align"

workflow/rules/qc.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,4 @@ rule multiqc:
193193
log:
194194
"logs/multiqc.log",
195195
wrapper:
196-
"v2.7.0/bio/multiqc"
196+
"v3.5.3/bio/multiqc"

workflow/rules/ref.smk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rule get_genome:
1010
release=config["ref"]["release"],
1111
cache: True
1212
wrapper:
13-
"v1.21.4/bio/reference/ensembl-sequence"
13+
"v3.5.3/bio/reference/ensembl-sequence"
1414

1515

1616
rule get_annotation:
@@ -26,7 +26,7 @@ rule get_annotation:
2626
log:
2727
"logs/get_annotation.log",
2828
wrapper:
29-
"v1.21.4/bio/reference/ensembl-annotation"
29+
"v3.5.3/bio/reference/ensembl-annotation"
3030

3131

3232
rule genome_faidx:
@@ -38,7 +38,7 @@ rule genome_faidx:
3838
"logs/genome-faidx.log",
3939
cache: True
4040
wrapper:
41-
"v1.21.4/bio/samtools/faidx"
41+
"v3.5.3/bio/samtools/faidx"
4242

4343

4444
rule bwa_index:
@@ -52,7 +52,7 @@ rule bwa_index:
5252
mem_mb=369000,
5353
cache: True
5454
wrapper:
55-
"v1.21.4/bio/bwa/index"
55+
"v3.5.3/bio/bwa/index"
5656

5757

5858
rule star_index:
@@ -68,4 +68,4 @@ rule star_index:
6868
"logs/star_index_genome.log",
6969
cache: True
7070
wrapper:
71-
"v1.21.4/bio/star/index"
71+
"v3.5.3/bio/star/index"

workflow/rules/trim.smk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rule get_sra:
55
log:
66
"logs/get-sra/{accession}.log",
77
wrapper:
8-
"v1.21.4/bio/sra-tools/fasterq-dump"
8+
"v3.5.3/bio/sra-tools/fasterq-dump"
99

1010

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

4141

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

0 commit comments

Comments
 (0)