Skip to content
Snippets Groups Projects
Select Git revision
  • f99f17fb78113257fa5d1d3bee30a3938f566baf
  • master default protected
  • L2SS-1914-fix_job_dispatch
  • TMSS-3170
  • TMSS-3167
  • TMSS-3161
  • TMSS-3158-Front-End-Only-Allow-Changing-Again
  • TMSS-3133
  • TMSS-3319-Fix-Templates
  • test-fix-deploy
  • TMSS-3134
  • TMSS-2872
  • defer-state
  • add-custom-monitoring-points
  • TMSS-3101-Front-End-Only
  • TMSS-984-choices
  • SDC-1400-Front-End-Only
  • TMSS-3079-PII
  • TMSS-2936
  • check-for-max-244-subbands
  • TMSS-2927---Front-End-Only-PXII
  • Before-Remove-TMSS
  • LOFAR-Release-4_4_318 protected
  • LOFAR-Release-4_4_317 protected
  • LOFAR-Release-4_4_316 protected
  • LOFAR-Release-4_4_315 protected
  • LOFAR-Release-4_4_314 protected
  • LOFAR-Release-4_4_313 protected
  • LOFAR-Release-4_4_312 protected
  • LOFAR-Release-4_4_311 protected
  • LOFAR-Release-4_4_310 protected
  • LOFAR-Release-4_4_309 protected
  • LOFAR-Release-4_4_308 protected
  • LOFAR-Release-4_4_307 protected
  • LOFAR-Release-4_4_306 protected
  • LOFAR-Release-4_4_304 protected
  • LOFAR-Release-4_4_303 protected
  • LOFAR-Release-4_4_302 protected
  • LOFAR-Release-4_4_301 protected
  • LOFAR-Release-4_4_300 protected
  • LOFAR-Release-4_4_299 protected
41 results

CudaRuntimeCompiler.cc

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    download_and_compress_pipeline.cwl 2.09 KiB
    #!/usr/bin/env cwl-runner
    
    cwlVersion: v1.2
    class: Workflow
    label: download_and_compress_pipeline
    
    requirements:
    - class: ScatterFeatureRequirement
    - class: SubworkflowFeatureRequirement
    - class: StepInputExpressionRequirement
    - class: InlineJavascriptRequirement
    
    inputs:
    - id: flag_autocorrelation
      type: boolean?
    - id: surls
      type: string[]
    - id: is_long_baseline
      type: boolean
    
    outputs:
    - id: compressed
      type: File[]
      outputSource:
      - compress/compressed
    - id: logfile
      type:
        type: array
        items:
          type: array
          items: File
      outputSource:
      - compress/logfile
    - id: ingest
      type: Any[]
      outputSource:
      - compress/ingest
    - id: quality
      type: Any
      outputSource:
      - format_quality_metrics/formatted_quality
    - id: control
      type: Any
      outputSource:
      - format_quality_metrics/control
    - id: inspect
      type: File
      outputSource:
      - combine/inspect_file
    
    steps:
    - id: fetch_data
      label: fetch_data
      in:
      - id: surl_link
        source: surls
      scatter:
      - surl_link
      run: steps/fetch_data.cwl
      out:
      - id: uncompressed
    - id: compress
      in:
      - id: msin
        source: fetch_data/uncompressed
      - id: flag_autocorrelation
        source: flag_autocorrelation
      - id: is_long_baseline
        source: is_long_baseline
      scatter:
      - msin
      run: ./compress_pipeline.cwl
      out:
      - id: compressed
      - id: inspect
      - id: logfile
      - id: ingest
      - id: keep_input
      - id: applied_fixes
      - id: unfixable_issues
    - id: combine
      in:
      - id: inputs
        source: compress/inspect
      run: steps/combine_inspect_dataset.cwl
      out:
      - inspect_file
    - id: extract_metrics
      in:
      - id: inspect
        source: combine/inspect_file
      run: steps/extract_quality_metrics.cwl
      out:
      - id: plots
      - id: quality
    - id: format_quality_metrics
      in:
      - id: plots
        source: extract_metrics/plots
      - id: quality
        source: extract_metrics/quality
      - id: msin
        source: fetch_data/uncompressed
      - id: keep_input
        source: compress/keep_input
      - id: applied_fixes
        source: compress/applied_fixes
      - id: unfixable_issues
        source: compress/unfixable_issues
      run: steps/format_metrics.cwl
      out:
      - formatted_quality
      - control