From 176647711081054f8e08fad9ac8077d60612893b Mon Sep 17 00:00:00 2001 From: Vijini Mallawaarachchi Date: Mon, 12 Aug 2024 16:39:08 +0930 Subject: [PATCH] MAINT: Update help message --- src/graphbin2/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphbin2/cli.py b/src/graphbin2/cli.py index 52cd52a..f909d85 100644 --- a/src/graphbin2/cli.py +++ b/src/graphbin2/cli.py @@ -57,7 +57,7 @@ def __init__( @click.command() @click.option( "--assembler", - help="name of the assembler used. (Supports SPAdes, SGA and Flye)", + help="name of the assembler used. (Supports SPAdes, SGA, MEGAHIT and Flye)", type=click.Choice(["spades", "megahit", "sga", "flye"], case_sensitive=False), required=True, )