blob: e6a279b51384ac977311d8036f4e1e5db40e40c1 (
plain)
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
|
#!/usr/bin/env cwl-runner
class: CommandLineTool
cwlVersion: v1.1
hints:
DockerRequirement:
dockerPull: jerven/spodgi:0.0.6
requirements:
InlineJavascriptRequirement: {}
ShellCommandRequirement: {}
ResourceRequirement:
ramMin: $((2 * 1024) + 1)
inputs:
- id: odgi
type: File
- id: output_name
type: string?
stdout: $(inputs.output_name || inputs.odgi.nameroot+'.ttl.xz')
arguments:
[odgi_to_rdf.py, $(inputs.odgi), "-",
{valueFrom: "|", shellQuote: false},
xz, --stdout]
outputs:
- id: rdf
type: stdout
|