From 67e2b301263dfe0d98b67ece2e2187c38e032c91 Mon Sep 17 00:00:00 2001 From: fabianegli Date: Tue, 29 Nov 2022 18:39:16 +0100 Subject: [PATCH 1/2] fix argument name in docstring --- nf_core/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nf_core/create.py b/nf_core/create.py index 299ff9397f..977d320bca 100644 --- a/nf_core/create.py +++ b/nf_core/create.py @@ -38,7 +38,7 @@ class PipelineCreate: force (bool): Overwrites a given workflow directory with the same name. Defaults to False. May the force be with you. outdir (str): Path to the local output directory. - template_yaml (str): Path to template.yml file for pipeline creation settings. + template_yaml_path (str): Path to template.yml file for pipeline creation settings. plain (bool): If true the Git repository will be initialized plain. default_branch (str): Specifies the --initial-branch name. """ From daf36047fc1c4ac2e4c26fcbd395c0d3d13bf502 Mon Sep 17 00:00:00 2001 From: fabianegli Date: Tue, 29 Nov 2022 18:43:39 +0100 Subject: [PATCH 2/2] Update changelog for PR #2073 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9db67cb0d9..462ad0699e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,7 @@ - Bump promoted Python version from 3.7 to 3.8 ([#1971](https://github.com/nf-core/tools/pull/1971)) - Fix incorrect file deletion in `nf-core launch` when `--params_in` has the same name as `--params_out` - Updated GitHub actions ([#1998](https://github.com/nf-core/tools/pull/1998), [#2001](https://github.com/nf-core/tools/pull/2001)) -- Code maintenance ([#1818](https://github.com/nf-core/tools/pull/1818), [#2032](https://github.com/nf-core/tools/pull/2032)) +- Code maintenance ([#1818](https://github.com/nf-core/tools/pull/1818), [#2032](https://github.com/nf-core/tools/pull/2032), [#2073](https://github.com/nf-core/tools/pull/2073)) - Track from where modules and subworkflows are installed ([#1999](https://github.com/nf-core/tools/pull/1999)) - Substitute ModulesCommand and SubworkflowsCommand by ComponentsCommand ([#2000](https://github.com/nf-core/tools/pull/2000)) - Don't print source file + line number on logging messages (except when verbose) ([#2015](https://github.com/nf-core/tools/pull/2015))