-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtar.cwl
More file actions
45 lines (39 loc) · 739 Bytes
/
tar.cwl
File metadata and controls
45 lines (39 loc) · 739 Bytes
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
cwlVersion: v1.0
class: CommandLineTool
requirements:
InitialWorkDirRequirement:
listing:
- $(inputs.muse)
- $(inputs.mutect)
- $(inputs.somsni)
baseCommand: [tar, 'zhcf']
inputs:
tarfile:
type: string
inputBinding:
position: 1
mutect:
type: File
inputBinding:
position: 2
valueFrom: $(self.basename)
muse:
type: File
inputBinding:
position: 3
valueFrom: $(self.basename)
pindel:
type: File
inputBinding:
position: 4
valueFrom: $(self.basename)
somsni:
type: File
inputBinding:
position: 5
valueFrom: $(self.basename)
outputs:
tarredfile:
type: File
outputBinding:
glob: $(inputs.tarfile)