From fe88a83c7c9cdd84ef9fa70368ed3f8ca1b80ffd Mon Sep 17 00:00:00 2001 From: Chris Tomkins-Tinch Date: Thu, 7 Dec 2017 16:14:32 -0500 Subject: [PATCH] typo fix in order_and_orient argument help text (#733) --- assembly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assembly.py b/assembly.py index 6628b4bbe..624bd9390 100755 --- a/assembly.py +++ b/assembly.py @@ -559,7 +559,7 @@ def parser_order_and_orient(parser=argparse.ArgumentParser()): parser.add_argument( 'inReference', nargs='+', help=('Reference genome for ordering, orienting, and merging contigs, FASTA format. Multiple filenames may be listed, each ' - 'containing one reference genome. Alternattely, multiple references may be given by specifying a single filename, ' + 'containing one reference genome. Alternatively, multiple references may be given by specifying a single filename, ' 'and giving the number of reference segments with the nGenomeSegments parameter. If multiple references are given, ' 'they must all contain the same number of segments listed in the same order.') )