-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
151 lines (151 loc) · 4.68 KB
/
Copy pathnextflow_schema.json
File metadata and controls
151 lines (151 loc) · 4.68 KB
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
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Pathogenome workflow parameters",
"description": "Parameters for downloading accession reads, assembling contigs, predicting genes, and annotating antimicrobial resistance.",
"type": "object",
"required": [
"accessions",
"fondue_email"
],
"properties": {
"accessions": {
"type": "string",
"format": "file-path",
"mimetype": "text/tsv",
"title": "Accession IDs",
"description": "TSV file with a sample-id header and one NCBI or ENA run accession per row."
},
"fondue_email": {
"type": "string",
"format": "email",
"title": "Contact email",
"description": "Email address supplied to q2-fondue for accession downloads."
},
"import_threads": {
"type": "integer",
"minimum": 1,
"default": 1,
"title": "Accession import CPUs",
"description": "Number of CPUs allocated to the accession import step."
},
"import_memory_gb": {
"type": "integer",
"minimum": 1,
"default": 8,
"title": "Accession import memory (GB)",
"description": "Memory allocated to the accession import step, in GB."
},
"import_time_hours": {
"type": "integer",
"minimum": 1,
"default": 1,
"title": "Accession import time limit (hours)",
"description": "Maximum runtime for the accession import step, in hours."
},
"fondue_threads": {
"type": "integer",
"minimum": 1,
"default": 8,
"title": "Fondue threads",
"description": "Number of download threads and CPUs used by q2-fondue."
},
"fondue_memory_gb": {
"type": "integer",
"minimum": 1,
"default": 16,
"title": "Fondue memory (GB)",
"description": "Memory allocated to the read download step, in GB."
},
"fondue_time_hours": {
"type": "integer",
"minimum": 1,
"default": 36,
"title": "Fondue time limit (hours)",
"description": "Maximum runtime for the read download step, in hours."
},
"megahit_threads": {
"type": "integer",
"minimum": 1,
"default": 12,
"title": "MEGAHIT threads",
"description": "Number of assembly threads and CPUs used by MEGAHIT."
},
"megahit_memory_gb": {
"type": "integer",
"minimum": 1,
"default": 64,
"title": "MEGAHIT memory (GB)",
"description": "Memory allocated to the assembly step, in GB."
},
"megahit_time_hours": {
"type": "integer",
"minimum": 1,
"default": 48,
"title": "MEGAHIT time limit (hours)",
"description": "Maximum runtime for the assembly step, in hours."
},
"prodigal_threads": {
"type": "integer",
"minimum": 1,
"default": 12,
"title": "Prodigal CPUs",
"description": "Number of CPUs allocated to the gene prediction step."
},
"prodigal_memory_gb": {
"type": "integer",
"minimum": 1,
"default": 32,
"title": "Prodigal memory (GB)",
"description": "Memory allocated to the gene prediction step, in GB."
},
"prodigal_time_hours": {
"type": "integer",
"minimum": 1,
"default": 24,
"title": "Prodigal time limit (hours)",
"description": "Maximum runtime for the gene prediction step, in hours."
},
"amr_db_threads": {
"type": "integer",
"minimum": 1,
"default": 8,
"title": "AMRFinderPlus database CPUs",
"description": "Number of CPUs allocated to the AMRFinderPlus database download step."
},
"amr_db_memory_gb": {
"type": "integer",
"minimum": 1,
"default": 16,
"title": "AMRFinderPlus database memory (GB)",
"description": "Memory allocated to the AMRFinderPlus database download step, in GB."
},
"amr_db_time_hours": {
"type": "integer",
"minimum": 1,
"default": 24,
"title": "AMRFinderPlus database time limit (hours)",
"description": "Maximum runtime for the AMRFinderPlus database download step, in hours."
},
"amr_threads": {
"type": "integer",
"minimum": 1,
"default": 4,
"title": "AMR annotation threads",
"description": "Number of threads and CPUs used by AMRFinderPlus annotation."
},
"amr_memory_gb": {
"type": "integer",
"minimum": 1,
"default": 128,
"title": "AMR annotation memory (GB)",
"description": "Memory allocated to the AMRFinderPlus annotation step, in GB."
},
"amr_time_hours": {
"type": "integer",
"minimum": 1,
"default": 24,
"title": "AMR annotation time limit (hours)",
"description": "Maximum runtime for the AMRFinderPlus annotation step, in hours."
}
}
}