This repository was archived by the owner on Aug 17, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env cwl-runner
2
+
3
+ class: CommandLineTool
4
+ description: "A Docker container for the BAMStats command. See the [BAMStats](http://bamstats. sourceforge. net/) website for more information. "
5
+ id : "BAMStats"
6
+ label : "BAMStats tool"
7
+
8
+ dct:creator:
9
+ "@id" : "http://orcid. org/0000-0002-7681-6415"
10
+ foaf:name: Brian O'Connor
11
+ foaf:mbox: "mailto:briandoconnor@gmail. com"
12
+
13
+ requirements:
14
+ - class: DockerRequirement
15
+ dockerPull: "quay. io/briandoconnor/dockstore-tool-bamstats:1. 25"
16
+ - { import: node-engine. cwl }
17
+
18
+ hints:
19
+ - class: ResourceRequirement
20
+ coresMin: 1
21
+ ramMin: 4092
22
+ outdirMin: 512000
23
+ description: "the process requires at least 4G of RAM"
24
+
25
+ inputs:
26
+ - id: "#bam_input"
27
+ type: File
28
+ description: "The BAM file used as input, it must be sorted. "
29
+ inputBinding:
30
+ position: 1
31
+
32
+ outputs:
33
+ - id: "#bamstats_report"
34
+ type: File
35
+ outputBinding:
36
+ glob: bamstats_report. zip
37
+ description: "A zip file that contains the HTML report and various graphics. "
38
+
39
+ baseCommand: ["bash", "/usr/local/bin/bamstats"]
You can’t perform that action at this time.
0 commit comments