Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
cjfields committed Mar 30, 2024
1 parent f9f7e5f commit e02d81c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 25 deletions.
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ params {
maxEE_rev = 2
truncQ = 2 //default
maxN = 0 //default
max_read_len = "Inf" // default, this can be coersed in R using as.numeric
max_read_len = 5000 // default, this can be coersed in R using as.numeric
min_read_len = 50 // default
// I think we can make these bool 'false' as above with R coersion (either through as.logical or using optparse in a Rscript)
rmPhiX = false
Expand Down
39 changes: 15 additions & 24 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,10 @@
"default": true
},
"fwd_adapter": {
"type": "string",
"default": ""
"type": "string"
},
"rev_adapter": {
"type": "string",
"default": ""
"type": "string"
},
"trim_for": {
"type": "integer",
Expand All @@ -317,11 +315,11 @@
},
"maxEE_for": {
"type": "integer",
"default": 0
"default": 2
},
"maxEE_rev": {
"type": "integer",
"default": 0
"default": 2
},
"truncQ": {
"type": "integer",
Expand All @@ -332,19 +330,18 @@
"default": 0
},
"max_read_len": {
"type": "string"
"type": "string",
"default": 5000
},
"min_read_len": {
"type": "integer",
"default": 50
},
"rmPhiX": {
"type": "boolean",
"default": false
"type": "boolean"
},
"qualityBinning": {
"type": "boolean",
"default": false
"type": "boolean"
},
"errorModel": {
"type": "string",
Expand All @@ -359,12 +356,10 @@
"default": 0
},
"trim_overhang": {
"type": "boolean",
"default": false
"type": "boolean"
},
"just_concatenate": {
"type": "boolean",
"default": false
"type": "boolean"
},
"dadaOpt": {
"type": "string",
Expand All @@ -387,20 +382,17 @@
"default": "rdp"
},
"reference": {
"type": "string",
"default": ""
"type": "string"
},
"species": {
"type": "string",
"default": ""
"type": "string"
},
"min_boot": {
"type": "integer",
"default": 50
},
"tax_levels": {
"type": "string",
"default": ""
"type": "string"
},
"tax_batch": {
"type": "integer",
Expand All @@ -416,7 +408,7 @@
},
"run_tree": {
"type": "string",
"default": "fasttree"
"default": "phangorn"
},
"pool": {
"type": "string",
Expand All @@ -427,8 +419,7 @@
"default": true
},
"to_QIIME2": {
"type": "boolean",
"default": true
"type": "boolean"
},
"id_type": {
"type": "string",
Expand Down

0 comments on commit e02d81c

Please sign in to comment.