Skip to content

Commit

Permalink
Merge pull request #7 from Zymo-Research/zero_primer_length
Browse files Browse the repository at this point in the history
allow primer lengths to be 0. use new docker image
  • Loading branch information
zxl124 authored Nov 8, 2023
2 parents 64a12a8 + d3b361e commit 75dc94c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ params {
design = false

// Input Options
forward_primer_length = 16
forward_primer_length = 17
reverse_primer_length = 24
amplicon_length = 510

Expand Down
18 changes: 9 additions & 9 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@
"properties": {
"forward_primer_length": {
"type": "integer",
"description": "Length of the forward primer",
"minimum": 1,
"maximum": 50,
"default": 16
"description": "Length of the forward primer, excluding the adapter. For example, the forward primer sequence in the Zymo Quick 16S Plus Kit (V3-V4) is CCTACGGGDGGCWGCAG, whihc is 17 bp long.",
"minimum": 0,
"maximum": 30,
"default": 17
},
"reverse_primer_length": {
"type": "integer",
"description": "Length of the reverse primer",
"minimum": 1,
"maximum": 50,
"description": "Length of the reverse primer, excluding the adapter. For example, the reverse primer sequence in the Zymo Quick 16S Plus Kit (V3-V4) is GACTACNVGGGTMTCTAATCC, which is 24 bp long.",
"minimum": 0,
"maximum": 30,
"default": 24
},
"amplicon_length": {
"type": "integer",
"description": "Length of the amplicon",
"description": "The maximum expected length of the amplicon, including the primers.",
"minimum": 1,
"maximum": 5000,
"maximum": 1000,
"default": 510
}
},
Expand Down
2 changes: 1 addition & 1 deletion processes/miqscore16s.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ params.reverse_primer_length = 24
params.amplicon_length = 510

process miqscore16s {
container 'zymoresearch/miqscore16s:latest'
container 'zymoresearch/miqscore16s:110723'
publishDir "${params.publish_dir}", mode: 'copy'

input:
Expand Down

0 comments on commit 75dc94c

Please sign in to comment.