Skip to content

Commit

Permalink
Add input validation parameter for baseq
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Dec 28, 2024
1 parent 1a449a3 commit 27e9086
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cloudgene.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,17 +126,17 @@ workflow:
- id: min_mean_coverage
description: Minimal Mean Coverage
type: number
visible: true
visible: false
value: 50

- id: baseQ
description: Minimal Base Quality
description: Minimal Base Quality (Variant Calling)
type: number
visible: true
value: 20
value: 20

- id: mapQ
description: Minimal Map Quality
description: Minimal Map Quality (Variant Calling)
type: number
visible: true
value: 20
Expand Down
1 change: 1 addition & 0 deletions modules/local/input_validation.nf
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ process INPUT_VALIDATION {
--output-contig contig.txt \
--report validation_report.txt \
--min-mean-depth ${params.min_mean_coverage} \
--min-mean-base-quality ${params.min_mean_base_quality} \
--tool ${params.mode}
exit_code_a=\$?
Expand Down
1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ params {
subsampling = "off"
subsampling_coverage = 2000
min_mean_coverage = 50
min_mean_base_quality = 10


service = [
Expand Down

0 comments on commit 27e9086

Please sign in to comment.