-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow_schema.json
39 lines (39 loc) · 1.2 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/grp-bork/reCOGnise/main/nextflow_schema.json",
"title": "reCOGnise nextflow schema",
"description": "reCOGnise uses COG marker genes to assign specI taxonomy to input prokaryotic genomes.",
"type": "object",
"definitions": {
"required": {
"title": "Input/Output Parameters",
"type": "object",
"description": "",
"default": "",
"properties": {
"input_dir": {
"type": "string",
"format": "directory-path",
"description": "Directory path to genome fasta files"
},
"output_dir": {
"type": "string",
"format": "directory-path",
"description": "Directory path to output files"
},
"marker_db": {
"type": "string",
"description": "Directory path to COG markers",
"hidden": true,
"default": "/vol/data/databases/clowm/CLDB-0190075fa6117f75add6ee173932d013/0190075fa6167724af18e616a3728332"
}
},
"required": ["output_dir", "input_dir", "marker_db"]
}
},
"allOf": [
{
"$ref": "#/definitions/required"
}
]
}