Skip to content

Commit

Permalink
Merge pull request #379 from nf-core/fix_trim_tail_reverse
Browse files Browse the repository at this point in the history
Fix trim tail for reverse reads
  • Loading branch information
rannick authored Aug 21, 2023
2 parents 09d50f1 + 9630917 commit 16ae4ef
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v2.3.4dev - [2023/08/21]

### Added

### Changed

### Fixed

- Tail trimming for reverse reads [#379](https://github.com/nf-core/rnafusion/pull/379)

### Removed

## v2.3.0 = [2022/04/24]

### Added
Expand Down
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ process {
}

withName: FASTP {
ext.args = params.trim_tail ? "--trim_tail1 ${params.trim_tail}" : ''
ext.args = params.trim_tail ? "--trim_tail1 ${params.trim_tail} --trim_tail2 ${params.trim_tail} " : ''
}

withName: FASTQC {
Expand Down

0 comments on commit 16ae4ef

Please sign in to comment.