Skip to content

Commit e3160e1

Browse files
committed
fix: fixed some erroneous or ambiguous argument descriptions
1 parent 446ca87 commit e3160e1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

bin/Eukfinder.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2656,8 +2656,7 @@ def parse_arguments(json_data):
26562656
'-k': ['--kmers', str, "21, 33, 55", 'kmers to use during assembly. '
26572657
'These must be odd and less than 128. default is 21,33,55',
26582658
False],
2659-
'--mhlen': ['--min-hit-length', int, 25, 'Maximum memory allocated to '
2660-
'carry out an assembly', False],
2659+
'--mhlen': ['--min-hit-length', int, 25, 'Minimum hit length by Centrifuge searches', False],
26612660
'--pclass': ['--p-reads-class', str, None, 'Classification for '
26622661
'pair end reads', False],
26632662
'--uclass': ['--u-reads-class', str, None, 'Classification for '
@@ -2716,7 +2715,7 @@ def parse_arguments(json_data):
27162715
group2.add_argument('--qscore', '--quality-score', type=int,
27172716
help='quality score for trimming', required=True)
27182717
group2.add_argument('--mlen', '--min-length', type=int,
2719-
help='minimum length', required=True)
2718+
help='minimum length of read after trimming to be kept by trimmomatic', required=True)
27202719
group2.add_argument('--mhlen', '--min-hit-length', type=int,
27212720
help='minimum hit length', required=True)
27222721
group2.add_argument('--hg', '--host-genome', type=str,
@@ -2784,7 +2783,7 @@ def parse_arguments(json_data):
27842783
group4.add_argument('--qscore', '--quality-score', type=int,
27852784
help='quality score for trimming', required=True)
27862785
group4.add_argument('--mlen', '--min-length', type=int,
2787-
help='minimum length', required=True)
2786+
help='minimum length of read after trimming to be kept by trimmomatic', required=True)
27882787
group4.add_argument('--mhlen', '--min-hit-length', type=int,
27892788
help='minimum hit length', required=True)
27902789
group4.add_argument('-o', '--out_name', type=str,

0 commit comments

Comments
 (0)