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(