blob: d440fcbbdca5c0454d3052624beddf88d5ea0d74 (
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
|
cwlVersion: v1.1
class: CommandLineTool
inputs:
inputODGI: File
outputs:
odgiPNG:
type: File
outputBinding:
glob: $(inputs.inputODGI.nameroot).png
requirements:
InlineJavascriptRequirement: {}
hints:
DockerRequirement:
dockerPull: "quay.io/biocontainers/odgi:v0.3--py37h8b12597_0"
ResourceRequirement:
coresMin: 4
ramMin: $(7 * 1024)
outdirMin: 1
baseCommand: [odgi, viz]
arguments: [-i, $(inputs.inputODGI),
-o, $(inputs.inputODGI.nameroot).png,
-x, "50000",
-y, "500",
-R,
-P, "4"]
|