From 0004b9b8808d3f405c8dde6a90accd9ca49c74db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlia=20Mir=20Pedrol?= Date: Thu, 20 Oct 2022 11:02:45 +0200 Subject: [PATCH] back to use Workflow name --- 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 c3bc73870..457adc326 100644 --- a/nf_core/create.py +++ b/nf_core/create.py @@ -203,7 +203,7 @@ def get_param(self, param_name, passed_value, template_yaml, template_yaml_path) return passed_value def prompt_wf_name(self): - wf_name = questionary.text("Name", style=nf_core.utils.nfcore_question_style).unsafe_ask() + wf_name = questionary.text("Workflow name", style=nf_core.utils.nfcore_question_style).unsafe_ask() while not re.match(r"^[a-z]+$", wf_name): log.error("[red]Invalid workflow name: must be lowercase without punctuation.") wf_name = questionary.text(