Skip to content

Commit

Permalink
cosmetics: fixed error message on incorrect usage of read files options
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeigurevich committed Jun 7, 2022
1 parent 8704550 commit 3d87c60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quast_libs/options_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,8 +790,8 @@ def parse_options(logger, quast_args):
if len(qconfig.forward_reads) != len(qconfig.reverse_reads):
logger.error('Use the SAME number of files with forward and reverse reads for paired-end libraries '
'(-1 <filepath> -2 <filepath>).\n'
'Use --12 option to specify a file with interlaced forward and reverse paired-end reads.\n'
'Use -s option to specify a file with unpaired (single-end) reads.', exit_with_code=3)
'Use --pe12 option to specify a file with interlaced forward and reverse paired-end reads.\n'
'Use --single option to specify a file with unpaired (single-end) reads.', exit_with_code=3)
if len(qconfig.mp_forward_reads) != len(qconfig.mp_reverse_reads):
logger.error('Use the SAME number of files with forward and reverse reads for mate-pair libraries '
'(--mp1 <filepath> --mp2 <filepath>).\n'
Expand Down

0 comments on commit 3d87c60

Please sign in to comment.