File: resreq_expr_float_v1_2.cwl

package info (click to toggle)
cwltool 3.1.20250110105449-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 10,516 kB
  • sloc: python: 20,992; javascript: 20,796; sh: 233; makefile: 152
file content (22 lines) | stat: -rwxr-xr-x 403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env cwl-runner
cwlVersion: v1.2
class: CommandLineTool
requirements:
  - class: InlineJavascriptRequirement
  - class: ResourceRequirement
    tmpdirMin: $((2 * inputs.input_bam.size) / 3.14159)
    outdirMin: $((2 * inputs.input_bam.size) / 3.14159)

inputs:
  input_bam: File

arguments:
 - |
   {"result": $(runtime) }

stdout: cwl.output.json

outputs:
  result: Any

baseCommand: [echo]