Skip to content

Commit

Permalink
Merge pull request #276 from nf-core/fix-illumina-adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
apeltzer authored Sep 1, 2023
2 parents 2b4253f + a026ba1 commit d25cc4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [v2.2.2](https://github.com/nf-core/smrnaseq/releases/tag/2.2.2) - 2023-06-01

- [[#253]](https://github.com/nf-core/smrnaseq/pull/253) - Remove globs from process alias when using ECR containers
- [[#237]](https://github.com/nf-core/smrnaseq/issues/237) - Fix illumina protocol clip parameters to default

## [v2.2.1](https://github.com/nf-core/smrnaseq/releases/tag/2.2.1) - 2023-05-12

Expand Down
4 changes: 2 additions & 2 deletions lib/WorkflowSmrnaseq.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ class WorkflowSmrnaseq {

switch(params.protocol){
case 'illumina':
params.putIfAbsent("clip_r1", 1);
params.putIfAbsent("three_prime_clip_r1",2);
params.putIfAbsent("clip_r1", 0);
params.putIfAbsent("three_prime_clip_r1",0);
params.putIfAbsent("three_prime_adapter", "TGGAATTCTCGGGTGCCAAGG");
break
case 'nextflex':
Expand Down

0 comments on commit d25cc4f

Please sign in to comment.