forked from Sage-Bionetworks/dockstore-tool-synapse-get
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockstore.cwl
53 lines (42 loc) · 914 Bytes
/
Dockstore.cwl
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
#!/usr/bin/env cwl-runner
class: CommandLineTool
id: "synapse-get"
label: "Synapse get tool"
cwlVersion: v1.0
$namespaces:
dct: http://purl.org/dc/terms/
foaf: http://xmlns.com/foaf/0.1/
dct:creator:
"@id": "http://orcid.org/0000-0001-9758-0176"
foaf:name: James Eddy
foaf:mbox: "mailto:james.a.eddy@gmail.com"
requirements:
- class: DockerRequirement
dockerPull: quay.io/ga4gh-dream/dockstore-tool-synapse-get:1.7.2
inputs:
config_file:
type: File
inputBinding:
position: 1
prefix: -c
recursive:
type: boolean
inputBinding:
position: 2
prefix: -r
synapse_id:
type: string?
inputBinding:
position: 3
prefix: -i
query:
type: string?
inputBinding:
position: 4
prefix: -q
outputs:
output:
type: Any
outputBinding:
glob: "synapse_files/*"
baseCommand: ["bash", "/usr/local/bin/synapse_get"]