Skip to content

Commit 8ea01be

Browse files
authored
fix: updates to sprocket CI (#226)
* fix: updates to sprocket CI * fix: sprocket lints (other than shellcheck) * chore: update container pulls
1 parent ff1cfde commit 8ea01be

16 files changed

+24
-24
lines changed

.github/workflows/sprocket-lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
exclude-patterns: template
1515
deny-warnings: true
1616
deny-notes: true
17-
except: TrailingComma,ContainerValue
17+
except: TrailingComma,ContainerUri

.github/workflows/validate-inputs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
- name: Validate Reference Inputs
1111
uses: stjude-rust-labs/sprocket-action@main
1212
with:
13-
action: validate-inputs
13+
action: validate
1414
wdl_files: "workflows/reference/bwa-db-build.wdl,workflows/reference/gatk-reference.wdl,workflows/reference/qc-reference.wdl,workflows/reference/star-db-build.wdl,workflows/reference/star-db-build.wdl"
1515
inputs_files: "workflows/reference/inputs/bwa-db-build-inputs.json,workflows/reference/inputs/gatk-reference-inputs.json,workflows/reference/inputs/qc-reference-inputs.json,workflows/reference/inputs/star-db-build-inputs.json,workflows/reference/inputs/star-db-build-mouse-contaminant-inputs.json"

data_structures/flag_filter.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ task validate_string_is_12bit_oct_dec_or_hex {
118118
runtime {
119119
memory: "4 GB"
120120
disks: "10 GB"
121-
container: "ghcr.io/stjudecloud/util:2.1.1"
121+
container: "ghcr.io/stjudecloud/util:2.1.2"
122122
maxRetries: 1
123123
}
124124
}

data_structures/read_group.wdl

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ task read_group_to_string {
104104
runtime {
105105
memory: "4 GB"
106106
disks: "10 GB"
107-
container: "ghcr.io/stjudecloud/util:2.1.1"
107+
container: "ghcr.io/stjudecloud/util:2.1.2"
108108
maxRetries: 1
109109
}
110110
}
@@ -441,7 +441,7 @@ task validate_read_group {
441441
runtime {
442442
memory: "4 GB"
443443
disks: "10 GB"
444-
container: "ghcr.io/stjudecloud/util:2.1.1"
444+
container: "ghcr.io/stjudecloud/util:2.1.2"
445445
maxRetries: 0
446446
}
447447
}

docker/util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "util",
3-
"version": "2.1.1"
3+
"version": "2.1.2"
44
}

tools/htseq.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ task calc_tpm {
209209
runtime {
210210
memory: "4 GB"
211211
disks: "10 GB"
212-
container: "ghcr.io/stjudecloud/util:2.1.1"
212+
container: "ghcr.io/stjudecloud/util:2.1.2"
213213
maxRetries: 1
214214
}
215215
}

tools/kraken2.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ task kraken {
334334
input {
335335
File read_one_fastq_gz
336336
File read_two_fastq_gz
337-
#@ except: DisallowedInputName
337+
#@ except: InputName
338338
File db
339339
String prefix = sub(
340340
basename(read_one_fastq_gz),

tools/md5sum.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ task compute_checksum {
3636
runtime {
3737
memory: "4 GB"
3838
disks: "~{disk_size_gb} GB"
39-
container: "ghcr.io/stjudecloud/util:2.1.1"
39+
container: "ghcr.io/stjudecloud/util:2.1.2"
4040
maxRetries: 1
4141
}
4242
}

tools/picard.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ task quality_score_distribution {
807807
}
808808
}
809809

810-
#@ except: NonmatchingOutput
810+
#@ except: MatchingOutputMeta
811811
task bam_to_fastq {
812812
meta {
813813
description: "**[Deprecated]** This WDL task converts the input BAM file into FASTQ format files. This task has been deprecated in favor of `samtools.bam_to_fastq` which is more performant and doesn't error on 'illegal mate states'."

tools/qualimap.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ task rnaseq {
9191
}
9292
}
9393

94-
#@ except: NonmatchingOutput
94+
#@ except: MatchingOutputMeta
9595
task bamqc {
9696
meta {
9797
description: "**[Deprecated]** This WDL task runs QualiMap's bamqc tool on the input BAM file. This task has been deprecated due to memory leak issues. Use at your own risk, for some samples can consume over 1TB of RAM."

tools/samtools.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ task position_sorted_fixmate {
11661166
}
11671167
}
11681168

1169-
#@ except: NonmatchingOutput
1169+
#@ except: MatchingOutputMeta
11701170
task markdup {
11711171
meta {
11721172
description: "**[DEPRECATED]** Runs `samtools markdup` on the position-sorted input BAM file. This creates a report and optionally a new BAM with duplicate reads marked."

tools/util.wdl

+7-7
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ task download {
4242
runtime {
4343
memory: "4 GB"
4444
disks: "~{disk_size_gb} GB"
45-
container: "ghcr.io/stjudecloud/util:2.1.1"
45+
container: "ghcr.io/stjudecloud/util:2.1.2"
4646
maxRetries: 1
4747
}
4848
}
@@ -139,7 +139,7 @@ task split_string {
139139
runtime {
140140
memory: "4 GB"
141141
disks: "10 GB"
142-
container: "ghcr.io/stjudecloud/util:2.1.1"
142+
container: "ghcr.io/stjudecloud/util:2.1.2"
143143
maxRetries: 1
144144
}
145145
}
@@ -187,7 +187,7 @@ task calc_gene_lengths {
187187
runtime {
188188
memory: "16 GB"
189189
disks: "~{disk_size_gb} GB"
190-
container: "ghcr.io/stjudecloud/util:2.1.1"
190+
container: "ghcr.io/stjudecloud/util:2.1.2"
191191
maxRetries: 1
192192
}
193193
}
@@ -313,7 +313,7 @@ task unpack_tarball {
313313
runtime {
314314
memory: "4 GB"
315315
disks: "~{disk_size_gb} GB"
316-
container: "ghcr.io/stjudecloud/util:2.1.1"
316+
container: "ghcr.io/stjudecloud/util:2.1.2"
317317
maxRetries: 1
318318
}
319319
}
@@ -419,7 +419,7 @@ task global_phred_scores {
419419
runtime {
420420
memory: "4 GB"
421421
disks: "~{disk_size_gb} GB"
422-
container: "ghcr.io/stjudecloud/util:2.1.1"
422+
container: "ghcr.io/stjudecloud/util:2.1.2"
423423
maxRetries: 1
424424
}
425425
}
@@ -497,7 +497,7 @@ task qc_summary {
497497
runtime {
498498
memory: "4 GB"
499499
disks: "10 GB"
500-
container: "ghcr.io/stjudecloud/util:2.1.1"
500+
container: "ghcr.io/stjudecloud/util:2.1.2"
501501
maxRetries: 1
502502
}
503503
}
@@ -561,7 +561,7 @@ task split_fastq {
561561
cpu: ncpu
562562
memory: "4 GB"
563563
disks: "~{disk_size_gb} GB"
564-
container: "ghcr.io/stjudecloud/util:2.1.1"
564+
container: "ghcr.io/stjudecloud/util:2.1.2"
565565
maxRetries: 1
566566
}
567567
}

workflows/dnaseq/dnaseq-standard-fastq.wdl

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ task parse_input {
138138
}
139139

140140
input {
141-
#@ except: DisallowedDeclarationName
141+
#@ except: DeclarationName
142142
Array[Int] array_lengths
143143
String aligner
144144
}
@@ -168,7 +168,7 @@ task parse_input {
168168
runtime {
169169
memory: "4 GB"
170170
disks: "10 GB"
171-
container: "ghcr.io/stjudecloud/util:2.1.1"
171+
container: "ghcr.io/stjudecloud/util:2.1.2"
172172
maxRetries: 0
173173
}
174174
}

workflows/dnaseq/dnaseq-standard.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ task parse_input {
136136
runtime {
137137
memory: "4 GB"
138138
disks: "10 GB"
139-
container: "ghcr.io/stjudecloud/util:2.1.1"
139+
container: "ghcr.io/stjudecloud/util:2.1.2"
140140
maxRetries: 0
141141
}
142142
}

workflows/qc/quality-check-standard.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ task parse_input {
557557
runtime {
558558
memory: "4 GB"
559559
disks: "10 GB"
560-
container: "ghcr.io/stjudecloud/util:2.1.1"
560+
container: "ghcr.io/stjudecloud/util:2.1.2"
561561
maxRetries: 1
562562
}
563563
}

workflows/rnaseq/rnaseq-standard.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ task parse_input {
179179
runtime {
180180
memory: "4 GB"
181181
disks: "10 GB"
182-
container: "ghcr.io/stjudecloud/util:2.1.1"
182+
container: "ghcr.io/stjudecloud/util:2.1.2"
183183
maxRetries: 1
184184
}
185185
}

0 commit comments

Comments
 (0)