Skip to content

Commit 012cbfb

Browse files
committed
add another param to the validateParameters example
1 parent ced9af7 commit 012cbfb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

examples/validateParameters/pipeline/nextflow.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ plugins {
55
params {
66
param1 = 120
77
param2 = true
8+
param3 = "this is a string"
89
}

examples/validateParameters/pipeline/nextflow_schema.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@
99
"title": "Test parameters",
1010
"type": "object",
1111
"fa_icon": "fas fa-terminal",
12-
"description": "Some random test parameters",
12+
"description": "Some example test parameters",
1313
"required": ["param1", "param2"],
1414
"properties": {
1515
"param1": {
1616
"type": "string"
1717
},
1818
"param2": {
1919
"type": "integer"
20+
},
21+
"param3": {
22+
"type": "string"
2023
}
2124
}
2225
}

0 commit comments

Comments
 (0)