-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow_schema.json
57 lines (57 loc) · 1.59 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com//master/nextflow_schema.json",
"title": " pipeline parameters",
"description": "",
"type": "object",
"definitions": {
"parameters": {
"title": "Parameters",
"type": "object",
"description": "Parameters for nf-hello-gatk pipeline",
"default": "",
"properties": {
"reads_bam": {
"type": "string",
"description": "Path to BAM input files (.bam)",
"format": "path"
},
"outdir": {
"type": "string",
"description": "Output directory to write results to.",
"default": "results",
"format": "path"
},
"reference": {
"type": "string",
"description": "Path to genome FASTA file (.fasta)",
"format": "file-path"
},
"reference_index": {
"type": "string",
"description": "Path to genome FASTA index (.fai)",
"format": "file-path"
},
"reference_dict": {
"type": "string",
"description": "Path to genome GATK dictionary file (.dict)",
"format": "file-path"
},
"intervals": {
"type": "string",
"description": "Path to intervals for variant calling in BED format (.bed)",
"format": "file-path"
},
"cohort_name": {
"type": "string",
"description": "Name of cohort to be used as output file"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/parameters"
}
]
}