-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow_schema.json
56 lines (56 loc) · 1.61 KB
/
nextflow_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com//master/nextflow_schema.json",
"title": " pipeline parameters",
"description": "",
"type": "object",
"definitions": {
"input_output": {
"title": "Input/Output",
"type": "object",
"description": "",
"default": "",
"properties": {
"total_reads": {
"type": "integer",
"default": 10000,
"description": "Number of reads to generate per GENERATE_READS process."
},
"num_files": {
"type": "integer",
"default": 10,
"description": "Number of GENERATE_READS processes which generate a single FASTQ file."
},
"small_files": {
"type": "integer",
"default": 1000,
"description": "Number of miniature text files to generate in MANY_SMALL_FILES process"
}
}
},
"tool_selection": {
"title": "Tool Selection",
"type": "object",
"description": "",
"default": "",
"properties": {
"run": {
"type": "string",
"description": "Selectively run a tool. If this option is enabled only tools with this name will be ran. Note: this may affect downstream tools."
},
"skip": {
"type": "string",
"description": "Selectively disable a tool. If this option is enabled a tool will be ignored. Note: this may affect downstream tools."
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_output"
},
{
"$ref": "#/definitions/tool_selection"
}
]
}