Skip to content
Snippets Groups Projects
Select Git revision
  • f7a1aa64b01af11bf0bc65741ed9e6654def0645
  • master default protected
  • image_support_for_boolean
  • image_support_lofar_fixes
  • image_support
  • moved-to-gitlab
  • remove-libpqxx-submodule
  • v0.11.2
  • v0.11.1
  • v0.11.0
  • v0.10.0
  • v0.9.1
  • v0.9.0
13 results

schema.sql

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    uvplot.cwl 1.80 KiB
    class: CommandLineTool
    cwlVersion: v1.1
    $namespaces:
      lofar: 'https://git.astron.nl/eosc/ontologies/raw/master/schema/lofar.owl'
      sbg: 'https://www.sevenbridges.com/'
    id: uvplot
    baseCommand:
      - plot_uvcov.py
    inputs:
      - id: MSfiles
        type:
          - 'Directory[]'
          - Directory
        inputBinding:
          position: 2
          shellQuote: false
        doc: List of MS for UV-plotting
      - id: output_name
        type: string?
        default: 'uv-coverage.png'
        inputBinding:
          position: 1
          prefix: '--output'
          shellQuote: false
        doc: Name of the output image
      - id: title
        default: 'uv-coverage'
        type: string?
        inputBinding:
          position: 1
          prefix: '--title'
          shellQuote: false
        doc: Title of the plots
      - id: limits
        default: ',,,'
        type: string?
        inputBinding:
          position: 1
          prefix: '--limits'
          shellQuote: false
      - id: timeslots
        default: '0,10,0'
        type: string?
        inputBinding:
          position: 1
          prefix: '--timeslots'
          shellQuote: false
      - id: antennas
        default: '-1'
        type: string?
        inputBinding:
          position: 1
          prefix: '--antennas'
          shellQuote: false
      - id: wideband
        default: true
        type: boolean?
        inputBinding:
          position: 0
          prefix: '--wideband True'
          shellQuote: false
    outputs:
      - id: output_image
        doc: Plot of the uv-coverage
        type: File[]
        outputBinding:
          glob: "*$(inputs.output_name.split('.').pop())"
      - id: logfile
        type: File[]
        outputBinding:
          glob: 'uvplot*.log'
    label: uvplot
    hints:
      - class: DockerRequirement
        dockerPull: lofareosc/prefactor3-cwl
    requirements:
      - class: ShellCommandRequirement
      - class: InlineJavascriptRequirement
    stdout: uvplot.log
    stderr: uvplot_err.log
    $schema:
      - 'https://git.astron.nl/eosc/ontologies/raw/master/schema/lofar.owl'