Revision fc90b8ca7d43f10fd9acee4985b89446c87d1801 authored by Kathy Tran on 12 January 2024, 01:41:05 UTC, committed by Kathy Tran on 12 January 2024, 01:41:05 UTC
1 parent 0c6564c
Raw File
Dockstore.cwl
#!/usr/bin/env cwl-runner
#
# Authors: Denis Yuen 

#!/usr/bin/env cwl-runner
class: CommandLineTool

description: |
    Dockstore

requirements:
  - class: ExpressionEngineRequirement
    requirements:
      - class: DockerRequirement
        dockerPull: commonworkflowlanguage/nodejs-engine
  - class: DockerRequirement
    dockerPull: dockstore 

inputs:
  - id: "#dummy"
    type: string
    default: ""

outputs:
  - id: "#dummy"
    type: string
    default: ""

baseCommand: ["/docker-dockstore-entrypoint.sh"]
back to top