Revision 2b9bdb68a0d2a16ac9da8f5779ef7e974327c0e3 authored by Denis Yuen on 14 March 2018, 17:07:05 UTC, committed by GitHub on 14 March 2018, 17:07:05 UTC
1 parent 2530d57
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