-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow_schema.json
70 lines (70 loc) · 2.78 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
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/IndexReferenceFasta-nf/master/nextflow_schema.json",
"title": "IndexReferenceFasta-nf pipeline parameters",
"description": "Pipeline for producing reference genome index files for WGS analysis",
"type": "object",
"definitions": {
"options": {
"title": "Options",
"type": "object",
"fa_icon": "fas fa-file-import",
"description": "Options for running the workflow.",
"help_text": "These options are common to all nf-core pipelines and allow you to customise some of the core preferences for how the pipeline runs.\n\nTypically these options would be set in a Nextflow config file loaded for all pipeline runs, such as `~/.nextflow/config`.",
"properties": {
"ref": {
"type": "string",
"default": "null",
"description": "Path to reference fasta",
"fa_icon": "fas fa-dna"
},
"bwa": {
"type": "boolean",
"description": "Generate bwa index files",
"fa_icon": "far fa-file-alt"
},
"gatk": {
"type": "boolean",
"description": "Generate gatk index files",
"fa_icon": "far fa-file-alt"
},
"samtools": {
"type": "boolean",
"default": true,
"description": "Generate samtools index files",
"fa_icon": "far fa-file-alt"
},
"help": {
"type": "boolean",
"description": "Display help text",
"fa_icon": "fas fa-question-circle",
"hidden": true
},
"whoami": {
"type": "string",
"default": "false",
"description": "User name for Pawsey and NCI runs",
"fa_icon": "fas fa-user-circle"
},
"pbs_account": {
"type": "string",
"default": "false",
"description": "Project name on NCI Gadi HPC",
"fa_icon": "fas fa-plug"
},
"slurm_account": {
"type": "string",
"default": "false",
"description": "Project name on Pawsey Setonix HPC",
"fa_icon": "fas fa-plug"
}
},
"required": ["ref"]
}
},
"allOf": [
{
"$ref": "#/definitions/options"
}
]
}