Skip to content

Commit

Permalink
Adding default value "merged" for --direction
Browse files Browse the repository at this point in the history
  • Loading branch information
crosenth committed Oct 3, 2024
1 parent 7fbef00 commit 2287762
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/write_seqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def main(arguments):
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument(
'seqtabs', nargs='*',
help='One or more headerless CSV files with columns specimen,count,seq')
help='One or more headerless CSV files '
'with columns specimen,count,seq')
parser.add_argument(
'--seqtablist', type=argparse.FileType('r'),
help='A file listing one seqtab file per line')
Expand All @@ -91,6 +92,7 @@ def main(arguments):
parser.add_argument(
'--direction',
choices=['merged', 'R1', 'R2'],
default='merged',
help='label to add to all sequence names')
parser.add_argument(
'-j', '--num-processes', type=int, default=1,
Expand Down

0 comments on commit 2287762

Please sign in to comment.