Skip to content
Snippets Groups Projects
Select Git revision
  • bb6a3256da9a11b042e0cee5d41b23fde29bced8
  • master default protected
  • L2SDP-1131
  • L2SDP-LIFT
  • L2SDP-1137
  • HPR-158
6 results

compile_ip.tcl

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    inspect_flagging_dataloss.cwl 805 B
    class: CommandLineTool
    cwlVersion: v1.0
    $namespaces:
      sbg: 'https://www.sevenbridges.com/'
    id: inspect_flagging_dataloss
    baseCommand:
      - python3
      - script.py
    inputs:
      - id: input
        type: Directory?
        inputBinding:
          position: 0
          shellQuote: false
    outputs:
      - id: output
        type: 'File'
        outputBinding:
          glob: metrics.json
    label: inspect_flagging_dataloss
    requirements:
      - class: ShellCommandRequirement
      - class: InitialWorkDirRequirement
        listing:
         - entryname: script.py
           entry: |
             import sys
             from casacore.tables import table
             input_ms_path = sys.argv[1]
             
             
             with open('metrics.json', 'w') as f_stream:
                 pass
             
      - class: DockerRequirement
        dockerPull: 'lofareosc/lofar-pipeline:latest'