1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix typo
Bug-Debian: https://bugs.debian.org/1087042
Author: Andreas Tille <tille@debian.org>
Last-Update: 2024-06-11
--- a/RAMBOK.py
+++ b/RAMBOK.py
@@ -145,7 +145,7 @@ def main():
parser.add_argument('-g', '--gapsize', help='Estimated size of gapsize in case of paired end reads, default = 1', default=1, required=False)
parser.add_argument('-c', '--cutoff_lower', help='Lower cutoff: Output only reads with a score lower than or equal to this value, use m1 for -1')
parser.add_argument('-C', '--cutoff_higher', help='Higher cutoff: Output only reads with a score higher than or equal to this value, use m1 for -1')
- parser.add_argument('-d', '--delete_temp', help='\Delete temporary files. Calculations will start from beginning next time.', action='store_true', default=False)
+ parser.add_argument('-d', '--delete_temp', help='Delete temporary files. Calculations will start from beginning next time.', action='store_true', default=False)
parser.add_argument('-f', '--filetype', help='Type of your input reads. fasta or fastq, default = fastq', default='fastq', required=False)
args = parser.parse_args()
name1 = args.name1
|