Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ params {
input = null

// General pipeline options
skip_run_gantt = false
skip_run_gantt = true

// Seqera CLI options
seqera_api_endpoint = "https://api.cloud.seqera.io"
Expand Down
2 changes: 1 addition & 1 deletion workflows/nf_aggregate/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ workflow NF_AGGREGATE {
//
// MODULE: Generate Gantt chart for workflow execution
//
if(!params.skip_run_gantt){
if(!skip_run_gantt){
ch_all_runs
.filter { meta, _run_dir -> meta.fusion}
.set { ch_runs_for_gantt }
Expand Down
Loading