Skip to content
Snippets Groups Projects
Unverified Commit 76126174 authored by Nicolas Servant's avatar Nicolas Servant Committed by GitHub
Browse files

Update nextflow_schema.json

Add patern for all comma separated string options
parent f9deac74
Branches
Tags
No related merge requests found
...@@ -227,6 +227,7 @@ ...@@ -227,6 +227,7 @@
"properties": { "properties": {
"bin_size": { "bin_size": {
"type": "string", "type": "string",
"pattern": "^(\d+)(,\d+)*$",
"default": "'1000000,500000'", "default": "'1000000,500000'",
"description": "Resolution to build the maps (comma separated)" "description": "Resolution to build the maps (comma separated)"
}, },
...@@ -268,6 +269,7 @@ ...@@ -268,6 +269,7 @@
"properties": { "properties": {
"res_dist_decay": { "res_dist_decay": {
"type": "string", "type": "string",
"pattern": "^(\d+)(,\d+)*$",
"default": "1000000", "default": "1000000",
"description": "Resolution to build count/distance plot" "description": "Resolution to build count/distance plot"
}, },
...@@ -278,11 +280,13 @@ ...@@ -278,11 +280,13 @@
}, },
"res_tads": { "res_tads": {
"type": "string", "type": "string",
"pattern": "^(\d+)(,\d+)*$",
"default": "40000,20000", "default": "40000,20000",
"description": "Resolution to run TADs callers (comma separated)" "description": "Resolution to run TADs callers (comma separated)"
}, },
"res_compartments": { "res_compartments": {
"type": "string", "type": "string",
"pattern": "^(\d+)(,\d+)*$",
"default": "250000", "default": "250000",
"description": "Resolution for compartments calling" "description": "Resolution for compartments calling"
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment