Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support cwl File contents loading in parameter references #9

Open
eleftherioszisis opened this issue May 31, 2024 · 0 comments
Open
Assignees

Comments

@eleftherioszisis
Copy link
Collaborator

eleftherioszisis commented May 31, 2024

In certain cases the output to one file needs to be loaded and passed as a string argument to a task downstream.

For example stage below converts the region id to its respective acronym and saves it as a region_file txt. init_cells needs to load the contents of that file, i.e. the acronym to pass it as a command argument.

steps:
  - id: stage
    run: ./stage.cwl
    in:
      region_id: region_id
    out:
      - region_file
  
  - id: init_cells
    run: ./init_cells
    in:
      region:
        source: stage/region_file
        valueFrom: $(self.contents)
    out:
      - nodes_file

See the spec for more details: https://www.commonwl.org/v1.1/Workflow.html#File

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant