Skip to content

Commit 99efc30

Browse files
authored
cleanup & simplification
1 parent 054c5c7 commit 99efc30

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

_includes/cwl/metadata_example.cwl

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,27 @@
11
#!/usr/bin/env cwl-runner
2-
3-
class: CommandLineTool
4-
id: Example tool
5-
label: Example tool
62
cwlVersion: v1.0
7-
doc: |
8-
An example tool demonstrating metadata.
3+
class: CommandLineTool
94

10-
requirements:
11-
- class: ShellCommandRequirement
5+
label: An example tool demonstrating metadata.
126

137
inputs:
14-
bam_input:
8+
aligned_sequences:
159
type: File
16-
doc: The BAM file used as input
10+
label: Aligned sequences in BAM format
1711
format: edam:format_2572
1812
inputBinding:
1913
position: 1
2014

15+
baseCommand: [ wc, -l ]
16+
2117
stdout: output.txt
2218

2319
outputs:
2420
report:
25-
type: File
21+
type: stdout
2622
format: edam:format_1964
27-
outputBinding:
28-
glob: "*.txt"
29-
doc: A text file that contains a line count
23+
label: A text file that contains a line count
3024

31-
baseCommand: ["wc", "-l"]
3225

3326
$namespaces:
3427
edam: http://edamontology.org/

0 commit comments

Comments
 (0)