Skip to content

Commit

Permalink
Cutadapt: fix --par_quality_cutoff_r2
Browse files Browse the repository at this point in the history
  • Loading branch information
DriesSchaumont committed Jul 1, 2024
1 parent e07f2d8 commit bca3e47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

* `pear`: fix component not exiting with the correct exitcode when PEAR fails.

* `cutadapt`: fix `--par_quality_cutoff_r2` argument.

* `cutadapt`: demultiplexing is now disabled by default. It can be re-enabled by using `demultiplex_mode`.

# biobox 0.1.0

## BREAKING CHANGES
Expand All @@ -12,7 +16,6 @@
Viash 0.9.0 in order to avoid issues with the current default separator `:` unintentionally
splitting up certain file paths.

* `cutadapt`: demultiplexing is now disabled by default. It can be re-enabled by using `demultiplex_mode`.

## NEW FEATURES

Expand Down
2 changes: 1 addition & 1 deletion src/cutadapt/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ mod_args=$(echo \
${par_cut_r2:+--cut_r2 "${par_cut_r2}"} \
${par_nextseq_trim:+--nextseq-trim "${par_nextseq_trim}"} \
${par_quality_cutoff:+--quality-cutoff "${par_quality_cutoff}"} \
${par_quality_cutoff_r2:+--quality-cutoff_r2 "${par_quality_cutoff_r2}"} \
${par_quality_cutoff_r2:+-Q "${par_quality_cutoff_r2}"} \
${par_quality_base:+--quality-base "${par_quality_base}"} \
${par_poly_a:+--poly-a} \
${par_length:+--length "${par_length}"} \
Expand Down

0 comments on commit bca3e47

Please sign in to comment.