-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow_schema.json
59 lines (57 loc) · 1.74 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
57
58
59
{
"$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": {
"title": "Input",
"type": "object",
"description": "Provide input to pipeline",
"default": "",
"required": ["input"],
"properties": {
"id": {
"type": "string",
"description": "Provide S3 location to sample sheet"
},
"referenceGenome": {
"type": "string",
"format": "directory-path",
"description": "Provide S3 location to folder containing cellranger reference"
},
"fastqPath": {
"type": "string",
"format": "directory-path",
"description": "fastqPath"
},
"cellranger_multi_config": {
"type": "string",
"format": "directory-path",
"description": "cellranger_multi_config"
}
}
},
"output": {
"title": "Output",
"type": "object",
"description": "",
"default": "",
"properties": {
"out": {
"type": "string",
"description": "Provide S3 location to store results"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/Input"
},
{
"$ref": "#/definitions/output"
}
]
}