Skip to content

Commit

Permalink
Merge pull request #76 from scwatts/fix-paramsummary-configfiles-display
Browse files Browse the repository at this point in the history
Fixes display of configFiles entries in parameter summary text
  • Loading branch information
nvnieuwk authored Nov 7, 2024
2 parents 6c5d6bd + 178ae55 commit 51069b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nextflow-io/nf-schema: Changelog

# Version 2.3.0

## Bug fixes

1. Fixed a bug in `paramsSummaryMap()` related to the processing of workflow config files.

# Version 2.2.0 - Kitakata

## New features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -419,13 +419,13 @@ Please contact the pipeline maintainer(s) if you see this warning as a user.
if (workflow.container) {
workflowSummary['container'] = workflow.container
}
def String configFiles = workflow.configFiles

workflowSummary['launchDir'] = workflow.launchDir
workflowSummary['workDir'] = workflow.workDir
workflowSummary['projectDir'] = workflow.projectDir
workflowSummary['userName'] = workflow.userName
workflowSummary['profile'] = workflow.profile
workflowSummary['configFiles'] = configFiles.join(', ')
workflowSummary['configFiles'] = workflow.configFiles ? workflow.configFiles.join(', ') : ''

// Get pipeline parameters defined in JSON Schema
def Map paramsSummary = [:]
Expand Down

0 comments on commit 51069b9

Please sign in to comment.