Skip to content

Commit

Permalink
Cutadapt: fix non-functional action parameter (#161)
Browse files Browse the repository at this point in the history
* Cutadapt: fix non-functional action parameter

* Add PR number
  • Loading branch information
DriesSchaumont authored Oct 3, 2024
1 parent 237a2e3 commit 0a0edca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

* `falco`: Fix a typo in the `--reverse_complement` argument (PR #157).

## BUG FIXES

* `cutadapt`: fix the the non-functional `action` parameter (PR #161).

## MINOR CHANGES

* Upgrade to Viash 0.9.0.
Expand Down
2 changes: 1 addition & 1 deletion src/cutadapt/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ input_args=$(echo \
${par_overlap:+--overlap "${par_overlap}"} \
${par_match_read_wildcards:+--match-read-wildcards} \
${par_no_match_adapter_wildcards:+--no-match-adapter-wildcards} \
${par_action:+--action "${par_action}"} \
${par_action:+--action="${par_action}"} \
${par_revcomp:+--revcomp} \
)
debug "Arguments to cutadapt:"
Expand Down

0 comments on commit 0a0edca

Please sign in to comment.