Skip to content
Snippets Groups Projects
Select Git revision
  • 9168a14dd139f4b2578b7862e7a332ba62e6e8d3
  • master default protected
  • dither_on_off_disabled
  • yocto
  • pypcc2
  • pypcc3
  • 2020-12-07-the_only_working_copy
  • v2.0
  • v1.0
  • v0.9
  • Working-RCU_ADC,ID
  • 2020-12-11-Holiday_Season_release
12 results

yamlconfig.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    extract_quality_metrics.cwl 791 B
    cwlVersion: 'v1.2'
    class: CommandLineTool
    baseCommand: 
      - bash
      - script.sh
    
    requirements:
      - class: InlineJavascriptRequirement
      - class: InitialWorkDirRequirement
        listing:
          - entryname: script.sh
            entry: | 
              #!/bin/bash
              inspect_utils.py plot $(inputs.inspect.path) plots
              inspect_utils.py inspect $(inputs.inspect.path) quality.json
    hints:
      - class: DockerRequirement
        dockerPull: git.astron.nl:5000/ldv/imaging_compress_pipeline:v0.5.14
      - class: NetworkAccess
        networkAccess: true
    inputs: 
    - id: inspect
      type: File
    outputs: 
    - id: plots
      type: File[]
      outputBinding: 
        glob: plots/*.png
    - id: quality
      type: Any
      outputBinding:
        glob: quality.json
        loadContents: true
        outputEval: $(JSON.parse(self[0].contents))