#!/usr/bin/env cwl-runner cwlVersion: v1.0 class: Workflow inputs: table_hits: type: File label: output of infernal's cmsearch outputs: LSU_coordinates: type: File outputSource: extract_lsu_coords/matched_seqs_with_coords steps: grep: run: pull-LSUs.cwl in: { hits: table_hits } out: [ LSUs ] extract_lsu_coords: run: extract-coords-from-cmsearch.cwl in: { infernal_matches: grep/LSUs } out: [ matched_seqs_with_coords ] $namespaces: s: http://schema.org/ $schemas: - https://schema.org/docs/schema_org_rdfa.html s:license: "https://www.apache.org/licenses/LICENSE-2.0" s:copyrightHolder: "EMBL - European Bioinformatics Institute"