-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.settings.json
100 lines (97 loc) · 2.47 KB
/
parameters.settings.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"parameters": [
{
"name": "samplePlan",
"label": "Input files",
"usage": "Path to sample plan (csv format)",
"type": "path",
"choices": [],
"nargs": "+",
"default_value": null,
"pattern": ".*\\*.*",
"render": "textfield",
"arity": 0,
"group": "Mandatory arguments"
},
{
"name": "profile",
"label": "Configuration profile(s)",
"usage": "Configuration profile to use. Can use multiple (comma separated).",
"type": "string",
"choices": [
"conda", "cluster", "docker", "multiconda", "conda", "path", "multipath", "singularity"
],
"nargs": "+",
"default_value": null,
"pattern": ".*",
"render": "textfield",
"arity": 0,
"group": "Mandatory arguments"
},
{
"name": "genome",
"label": "Reference genome",
"usage": "Name of the reference genome.",
"type": "string",
"nargs": "1",
"choices": [],
"default_value": false,
"pattern": "",
"render": "textfield",
"arity": 0,
"group": "Mandatory arguments"
},
{
"name": "genomeAnnotationPath",
"label": "Annotation path",
"usage": "Path to genome annotations folder",
"type": "path",
"choices": [],
"nargs": "+",
"default_value": null,
"pattern": ".*\\*.*",
"render": "textfield",
"arity": 0,
"group": "References"
},
{
"name": "outDir",
"label": "Output directory",
"usage": "The output directory where the results will be saved",
"type": "path",
"nargs": 1,
"choices": [],
"default_value": null,
"pattern": ".*",
"render": "file",
"arity": 0,
"group": "Other options"
},
{
"name": "metadata",
"label": "MultiQC metadata file",
"usage": "Specify a custom metadata file for MultiQC",
"type": "path",
"nargs": 1,
"choices": [],
"default_value": null,
"pattern": ".*",
"render": "file",
"arity": 0,
"group": "Other options"
},
{
"name": "name",
"label": "Name for the pipeline run",
"usage": "Name for the pipeline run. If not specified, Nextflow will automatically generate a random mnemonic",
"type": "string",
"nargs": 1,
"choices": [],
"default_value": "25.MB",
"pattern": ".*",
"render": "textfield",
"arity": 0,
"group": "Other options"
}
]
}