Skip to content

Commit

Permalink
back to use Workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
mirpedrol authored Oct 20, 2022
1 parent 84fb71b commit 0004b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 0004b9b

Please sign in to comment.