-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnextflow_schema.json
155 lines (155 loc) · 5.5 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://github.com/JAlvarezJarreta/movelib-workflow/main/nextflow_schema.json",
"title": "MEvoLib pipeline parameters",
"type": "object",
"definitions": {
"fetch_options": {
"title": "Sequence fetching options",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "NCBI Entrez query."
},
"species": {
"type": "string",
"description": "Species to fetch sequences for."
},
"seq_type": {
"type": "string",
"description": "Sequence type."
},
"refseq": {
"type": "boolean",
"description": "Fetch only reference sequences.",
"default": false
},
"max_seqs": {
"type": "integer",
"minimum": 1,
"description": "Maximum number of sequences to fetch"
}
}
},
"cluster_options": {
"title": "Clustering options",
"type": "object",
"properties": {
"cluster_tool": {
"type": "string",
"description": "Clustering tool.",
"enum": ["genes"]
}
}
},
"align_options": {
"title": "Multiple sequence alignment (MSA) options",
"type": "object",
"properties": {
"align_tool": {
"type": "string",
"description": "MSA tool.",
"enum": ["mafft", "clustalo", "muscle"]
},
"align_args": {
"type": "string",
"description": "Arguments (or keyword) to use for the MSA tool.",
"default": "default"
},
"align_out_format": {
"type": "string",
"description": "Output MSA file format.",
"enum": [
"fasta", "clustal", "maf", "mauve", "nexus", "phylip", "phylip-sequential",
"phylip-relaxed", "stockholm"
],
"default": "fasta"
}
}
},
"inference_options": {
"title": "Phylogenetic inference options",
"type": "object",
"properties": {
"inference_tool": {
"type": "string",
"description": "Phylogenetic inference tool.",
"enum": ["fasttree", "raxml"]
},
"inference_args": {
"type": "string",
"description": "Arguments (or keyword) to use for the phylogenetic inference tool.",
"default": "default"
},
"inference_out_format": {
"type": "string",
"description": "Output phylogeny file format.",
"enum": ["newick", "nexus", "nexml", "phyloxml"],
"default": "newick"
},
"inference_bootstraps": {
"type": "integer",
"minimum": 1,
"description": "Inference bootstraps",
"default": 200
}
}
},
"generic_options": {
"title": "Generic options",
"type": "object",
"description": "Less common options for the pipeline, typically set in a config file.",
"properties": {
"help": {
"type": ["string", "boolean"],
"description": "Display help text.",
"hidden": true
},
"input_file": {
"type": "string",
"format": "file-path",
"description": "Input file path."
},
"input_format": {
"type": "string",
"description": "Input file format.",
"enum": [
"embl", "fasta", "fastq", "fastq-illumina", "fastq-sanger", "fastq-solexa", "gb",
"genbank"
]
},
"output_dir": {
"type": "string",
"format": "directory-path",
"description": "Output directory."
},
"validate_params": {
"type": "boolean",
"description": "Boolean whether to validate parameters against the schema at runtime",
"default": true,
"hidden": true
},
"validationShowHiddenParams": {
"type": "boolean",
"description": "Show all params when using `--help`",
"hidden": true
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/fetch_options"
},
{
"$ref": "#/definitions/align_options"
},
{
"$ref": "#/definitions/inference_options"
},
{
"$ref": "#/definitions/generic_options"
}
]
}