forked from TORCH-Consortium/MAGMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow_schema.template.json
62 lines (62 loc) · 2.06 KB
/
nextflow_schema.template.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
60
61
62
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "",
"title": "MAGMA pipeline parameters",
"description": "",
"type": "object",
"definitions": {
"input_output_options": {
"title": "Input/Output options",
"type": "object",
"description": "",
"default": "",
"properties": {
"samplesheet": {
"type": "string",
"fa_icon": "fas fa-table",
"default": "${projectDir}/resources/2samples.txt",
"description": "The location of input samplesheet, by default it uses 2 samples."
},
"outdir": {
"type": "string",
"fa_icon": "fas fa-folder-open",
"default": "${projectDir}/results",
"description": "The output directory for the results of the analysis."
}
},
"required": [
"samplesheet",
"outdir"
],
"fa_icon": "fas fa-terminal"
},
"reference_files_options": {
"title": "Reference files options",
"type": "object",
"description": "",
"default": "",
"properties": {
"fasta": {
"type": "string",
"fa_icon": "fas fa-file-code",
"default": "s3://nf-tower-data/gatk4-germline-snps-indels-nf/references/Homo_sapiens_assembly38.fasta",
"default": "${projectDir}/resources/Homo_sapiens_assembly38.fasta",
"description": "The location of input reference fasta file."
}
},
"required": [
"fasta"
],
"fa_icon": "fas fa-anchor",
"help_text": ""
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
},
{
"$ref": "#/definitions/reference_files_options"
}
]
}