This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cirdna.yaml
332 lines (332 loc) · 13.4 KB
/
cirdna.yaml
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
!mobyle/program
name: cirdna
title: cirdna
description: Draws circular maps of DNA constructs
inputs: !mobyle/inputparagraph
children:
- !mobyle/inputprogramparagraph
prompt: Input section
name: input
children:
- !mobyle/inputprogramparameter {prompt: Commands to the cirdna drawing program
file, format: '("", " -infile=" + str(value))[value is not None ]',
simple: true, argpos: 1, mandatory: true, name: infile, command: false}
- !mobyle/inputprogramparagraph
prompt: Additional section
name: additional
children:
- !mobyle/inputprogramparameter
prompt: Maximum number of groups (value greater than or equal to 1)
format: ("", " -maxgroups=" + str(value))[value is not None and value!=vdef]
argpos: 2
name: maxgroups
command: false
type: !mobyle/integertype {default: 20}
ctrls:
- message: Value greater than or equal to 1 is required
test:
value: {'#gte': '1'}
- !mobyle/inputprogramparameter
prompt: Maximum number of labels (value greater than or equal to 1)
format: ("", " -maxlabels=" + str(value))[value is not None and value!=vdef]
argpos: 3
name: maxlabels
command: false
type: !mobyle/integertype {default: 10000}
ctrls:
- message: Value greater than or equal to 1 is required
test:
value: {'#gte': '1'}
- !mobyle/inputprogramparagraph
prompt: Output section
name: output
children:
- !mobyle/inputprogramparameter
prompt: Draw a ruler
format: (" -noruler", "")[ bool(value) ]
argpos: 4
name: ruler
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Type of blocks
format: ("", " -blocktype=" + str(value))[value is not None and value!=vdef]
simple: true
argpos: 5
mandatory: true
name: blocktype
command: false
type: !mobyle/stringtype
default: Filled
options:
- {label: Open blocks, value: Open}
- {label: Filled blocks, value: Filled}
- {label: Black border, value: Outline}
- !mobyle/inputprogramparameter
prompt: Position in degrees of the molecule's origin on the circle (value
from 0 to 360)
format: ("", " -originangle=" + str(value))[value is not None and value!=vdef]
argpos: 6
name: originangle
command: false
type: !mobyle/floattype {default: 90.0}
ctrls:
- message: Value greater than or equal to 0 is required
test:
value: {'#gte': '0'}
- message: Value less than or equal to 360 is required
test:
value: {'#lte': '360'}
- !mobyle/inputprogramparameter
prompt: Ticks inside or outside the circle
format: ("", " -posticks=" + str(value))[value is not None and value!=vdef]
simple: true
argpos: 7
mandatory: true
name: posticks
command: false
type: !mobyle/stringtype
default: '2'
options:
- {label: In, value: '1'}
- {label: Out, value: '2'}
- !mobyle/inputprogramparameter
prompt: Text inside or outside the blocks
format: ("", " -posblocks=" + str(value))[value is not None and value!=vdef]
simple: true
argpos: 8
mandatory: true
name: posblocks
command: false
type: !mobyle/stringtype
default: '1'
options:
- {label: In, value: '1'}
- {label: Out, value: '2'}
- !mobyle/inputprogramparameter
prompt: Horizontal junctions between blocks
format: (" -nointersymbol", "")[ bool(value) ]
argpos: 9
name: intersymbol
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Colour of junctions between blocks (enter a colour number) (value
from 0 to 15)
format: ("", " -intercolour=" + str(value))[value is not None and value!=vdef]
argpos: 10
name: intercolour
command: false
type: !mobyle/integertype {default: 1}
ctrls:
- message: Value greater than or equal to 0 is required
test:
value: {'#gte': '0'}
- message: Value less than or equal to 15 is required
test:
value: {'#lte': '15'}
- !mobyle/inputprogramparameter
prompt: Horizontal junctions between ticks
format: ("", " -interticks")[ bool(value) ]
argpos: 11
name: interticks
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Interval between ticks in the ruler (value greater than or equal
to 0)
format: ("", " -gapsize=" + str(value))[value is not None and value!=vdef]
argpos: 12
name: gapsize
command: false
type: !mobyle/integertype {default: 500}
ctrls:
- message: Value greater than or equal to 0 is required
test:
value: {'#gte': '0'}
- !mobyle/inputprogramparameter
prompt: Vertical lines at the ruler's ticks
format: ("", " -ticklines")[ bool(value) ]
argpos: 13
name: ticklines
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
comment: Height of text. Enter a number <1.0 or >1.0 to decrease or increase
the size, respectively
prompt: Text scale factor (value greater than or equal to 0.0)
format: ("", " -textheight=" + str(value))[value is not None and value!=vdef]
argpos: 14
name: textheight
command: false
type: !mobyle/floattype {default: 1.0}
ctrls:
- message: Value greater than or equal to 0.0 is required
test:
value: {'#gte': '0.0'}
- !mobyle/inputprogramparameter
comment: Length of text. Enter a number <1.0 or >1.0 to decrease or increase
the size, respectively
prompt: Length of text multiplier (value greater than or equal to 0.0)
format: ("", " -textlength=" + str(value))[value is not None and value!=vdef]
argpos: 15
name: textlength
command: false
type: !mobyle/floattype {default: 1.0}
ctrls:
- message: Value greater than or equal to 0.0 is required
test:
value: {'#gte': '0.0'}
- !mobyle/inputprogramparameter
comment: Height of ticks. Enter a number <1.0 or >1.0 to decrease or increase
the size, respectively
prompt: Height of ticks multiplier (value greater than or equal to 0.0)
format: ("", " -tickheight=" + str(value))[value is not None and value!=vdef]
argpos: 16
name: tickheight
command: false
type: !mobyle/floattype {default: 1.0}
ctrls:
- message: Value greater than or equal to 0.0 is required
test:
value: {'#gte': '0.0'}
- !mobyle/inputprogramparameter
comment: Height of blocks. Enter a number <1.0 or >1.0 to decrease or
increase the size, respectively
prompt: Height of blocks multiplier (value greater than or equal to 0.0)
format: ("", " -blockheight=" + str(value))[value is not None and value!=vdef]
argpos: 17
name: blockheight
command: false
type: !mobyle/floattype {default: 1.0}
ctrls:
- message: Value greater than or equal to 0.0 is required
test:
value: {'#gte': '0.0'}
- !mobyle/inputprogramparameter
comment: Height of range ends. Enter a number <1.0 or >1.0 to decrease
or increase the size, respectively
prompt: Height of range ends multiplier (value greater than or equal to
0.0)
format: ("", " -rangeheight=" + str(value))[value is not None and value!=vdef]
argpos: 18
name: rangeheight
command: false
type: !mobyle/floattype {default: 1.0}
ctrls:
- message: Value greater than or equal to 0.0 is required
test:
value: {'#gte': '0.0'}
- !mobyle/inputprogramparameter
comment: Space between groups. Enter a number <1.0 or >1.0 to decrease
or increase the size, respectively
prompt: Space between groups multiplier (value greater than or equal to
0.0)
format: ("", " -gapgroup=" + str(value))[value is not None and value!=vdef]
argpos: 19
name: gapgroup
command: false
type: !mobyle/floattype {default: 1.0}
ctrls:
- message: Value greater than or equal to 0.0 is required
test:
value: {'#gte': '0.0'}
- !mobyle/inputprogramparameter
comment: Space between text and ticks, blocks, and ranges. Enter a number
<1.0 or >1.0 to decrease or increase the size, respectively
prompt: Space between text and ticks, blocks, and ranges multiplier (value
greater than or equal to 0.0)
format: ("", " -postext=" + str(value))[value is not None and value!=vdef]
argpos: 20
name: postext
command: false
type: !mobyle/floattype {default: 1.0}
ctrls:
- message: Value greater than or equal to 0.0 is required
test:
value: {'#gte': '0.0'}
- !mobyle/inputprogramparameter
prompt: Choose the graphout output format
format: (" -graphout=" + str(vdef), " -graphout=" + str(value))[value
is not None and value!=vdef]
simple: true
argpos: 21
mandatory: true
name: graphout
command: false
type: !mobyle/stringtype
default: png
options:
- {label: Png, value: png}
- {label: Gif, value: gif}
- {label: Cps, value: cps}
- {label: Ps, value: ps}
- {label: Meta, value: meta}
- {label: Data, value: data}
- !mobyle/inputprogramparameter
prompt: Name of the output graph
format: ("" , " -goutfile=" + str(value))[value is not None]
argpos: 22
name: goutfile
command: false
type: !mobyle/stringtype {default: cirdna_graph}
- !mobyle/inputprogramparameter
prompt: Turn off any prompting
format: '" -auto -stdout"'
argpos: 23
name: auto
command: false
hidden: true
type: !mobyle/stringtype {}
outputs: !mobyle/outputparagraph
children:
- !mobyle/outputprogramparagraph
prompt: Output section
name: output
children:
- !mobyle/outputprogramparameter
prompt: Graph file
filenames: '"*.png"'
name: outgraph_png
precond: {graphout: png}
- !mobyle/outputprogramparameter
prompt: Graph file
filenames: '"*.gif"'
name: outgraph_gif
precond: {graphout: gif}
- !mobyle/outputprogramparameter
prompt: Graph file
filenames: '"*.ps"'
name: outgraph_ps
precond:
'#or':
- {graphout: ps}
- {graphout: cps}
- !mobyle/outputprogramparameter
prompt: Graph file
filenames: '"*.meta"'
name: outgraph_meta
precond: {graphout: meta}
- !mobyle/outputprogramparameter
prompt: Graph file
filenames: '"*.dat"'
name: outgraph_data
precond: {graphout: data}
- !mobyle/outputprogramparameter
prompt: Standard output
filenames: '"cirdna.out"'
name: stdout
output_type: stdout
type: !mobyle/formattedtype
data_terms: ['EDAM_data:2048']
- !mobyle/outputprogramparameter
prompt: Standard error
filenames: '"cirdna.err"'
name: stderr
type: !mobyle/formattedtype
data_terms: ['EDAM_data:2048']
operations: ['EDAM_operation:0578']
topics: ['EDAM_topic:0092', 'EDAM_topic:0096']
documentation_links: ['http://bioweb2.pasteur.fr/docs/EMBOSS/cirdna.html', 'http://emboss.sourceforge.net/docs/themes']
command: cirdna
env: {}