Skip to content

Commit

Permalink
cutadapt: Fix output file name when --ignore-mate=forward is passed
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Feb 8, 2022
1 parent 815a7d6 commit d4771d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rnaseq_pipeline/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def run(self):
logger.info('Forward mate is ignored for %s.', repr(self))
yield platform.get_trim_single_end_reads_task(
r2.path,
join(destdir, os.path.basename(r1.path)),
join(destdir, os.path.basename(r2.path)),
minimum_length=self.minimum_length,
cpus=4)
elif self.ignore_mate == 'reverse':
Expand Down

0 comments on commit d4771d5

Please sign in to comment.