Skip to content
Draft
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
15 changes: 15 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
nextflow.preview.output = true

process TEST_SUCCESS {
/*
This process should automatically succeed
Expand Down Expand Up @@ -471,5 +473,18 @@ workflow NF_CANARY {
}

workflow {
main:
NF_CANARY(params.run, params.skip, params.gpu)

publish:
outputs = NF_CANARY.out.collect()
}

output {
outputs {
path "."
index {
path params.output_index
}
}
}
13 changes: 7 additions & 6 deletions nextflow.config
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
params {
skip = ''
gpu = false
run = ''
outdir = null
remoteFile = null
container = "quay.io/biocontainers/ubuntu:24.04"
skip = ''
gpu = false
run = ''
outdir = null
remoteFile = null
output_index = "outputs.json"
container = "quay.io/biocontainers/ubuntu:24.04"
}

process {
Expand Down