forked from CancerCollaboratory/dockstore-tool-bamstats
-
Notifications
You must be signed in to change notification settings - Fork 3
/
bamstats.cwl
53 lines (44 loc) · 1.36 KB
/
bamstats.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: "BAMStats"
label: "BAMStats tool"
cwlVersion: v1.1
doc: |
![build_status](https://quay.io/repository/collaboratory/dockstore-tool-bamstats/status)
A Docker container for the BAMStats command. See the [BAMStats](http://bamstats.sourceforge.net/) website for more information.
dct:creator:
"@id": "http://orcid.org/0000-0002-7681-6415"
foaf:name: Brian O'Connor
foaf:mbox: "mailto:[email protected]"
requirements:
- class: DockerRequirement
dockerPull: "ghcr.io/dockstore/dockstore-tool-bamstats:1.25-8"
hints:
- class: ResourceRequirement
coresMin: 1
ramMin: 4092 # "the process requires at least 4G of RAM"
outdirMin: 512000
inputs:
mem_gb:
type: int
default: 4
doc: "The memory, in GB, for the reporting tool"
inputBinding:
position: 1
bam_input:
type: File
doc: "The BAM file used as input, it must be sorted."
format: "http://edamontology.org/format_2572"
inputBinding:
position: 2
outputs:
bamstats_report:
type: File
format: "http://edamontology.org/format_3615"
outputBinding:
glob: bamstats_report.zip
doc: "A zip file that contains the HTML report and various graphics."
baseCommand: ["bash", "/usr/local/bin/bamstats"]
$namespaces:
dct: http://purl.org/dc/terms/
foaf: http://xmlns.com/foaf/0.1/