forked from ucscCancer/muse-tool
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmuse.cwl
42 lines (42 loc) · 822 Bytes
/
muse.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
class: CommandLineTool
label: MuSE
cwlVersion: v1.0
baseCommand: [/opt/bin/muse.py, -O, muse.vcf, -w, ./, --muse, MuSEv1.0rc]
requirements:
- class: "DockerRequirement"
dockerPull: "opengenomics/muse:latest"
inputs:
tumor:
type: File
inputBinding:
prefix: --tumor-bam
secondaryFiles:
- .bai
normal:
type: File
inputBinding:
prefix: --normal-bam
secondaryFiles:
- .bai
reference:
type: File
inputBinding:
prefix: -f
known:
type: File?
inputBinding:
prefix: -D
mode:
type: {"type": "enum", "name": "Mode", "symbols": ["wgs", "wxs"]}
inputBinding:
prefix: --mode
ncpus:
type: int
default: 8
inputBinding:
prefix: "--cpus"
outputs:
mutations:
type: File
outputBinding:
glob: muse.vcf