Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: cutadapt base quality cutoff arguments have the wrong type #66

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# biobox unreleased
# biobox x.x.x (unreleased)

# BUG FIXES

* `cutadapt`: fix nucleotide quality cutoff argument needed their values specified as
strings instead of integers (PR #66).

# biobox 0.1.0

## BREAKING CHANGES

Expand Down
4 changes: 2 additions & 2 deletions src/cutadapt/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ argument_groups:
dark cycles appearing as high-quality G bases.
- name: --quality_cutoff
alternatives: [-q]
type: string
type: integer
description: |
Trim low-quality bases from 5' and/or 3' ends of each read
before adapter removal. Applied to both reads if data is
Expand All @@ -278,7 +278,7 @@ argument_groups:
trimmed with the first cutoff, the 3' end with the second.
- name: --quality_cutoff_r2
alternatives: [-Q]
type: string
type: integer
description: |
Quality-trimming cutoff for R2. Default: same as for R1
- name: --quality_base
Expand Down