Skip to content

Commit

Permalink
fix multi-line string syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Jul 22, 2024
1 parent 854adba commit aee0212
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fluviewer/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1279,9 +1279,9 @@ def map_reads(inputs, outdir, out_name, min_qual, threads):
log.info(f'See: http://www.htslib.org/doc/samtools-flags.html for info on sam flags.')
log.info('Removing unmapped reads, secondary alignments, and supplementary alignments.')
log.info(f'Applying minimum mapping quality: {min_qual}')
terminal_command = (f'samtools view ',
f'--exclude-flags {samtools_exclude_flags_str} ',
f'--min-MQ {min_qual} ',
terminal_command = (f'samtools view '
f'--exclude-flags {samtools_exclude_flags_str} '
f'--min-MQ {min_qual} '
f'--with-header {alignment_path} | samtools sort -o {filtered_alignment_path}')
process_name = 'samtools_view'
error_code = 16
Expand Down

0 comments on commit aee0212

Please sign in to comment.