File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ RUN apt-get update && \
1212 sh -c 'echo deb https://oss-binaries.phusionpassenger.com/apt/passenger buster main > /etc/apt/sources.list.d/passenger.list'
1313
1414RUN apt-get update && \
15- apt-get install -y --no-install-recommends passenger python3-setuptools build-essential python3-dev python3-pip git && \
15+ apt-get install -y --no-install-recommends passenger python3-setuptools build-essential python3-dev python3-pip python3-wheel git && \
1616 pip3 install pip==21.1.3
1717
1818RUN apt-get install -y --no-install-recommends libcurl4-openssl-dev libssl-dev
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Execution Service](https://github.com/ga4gh/workflow-execution-schemas) 1.0.0 AP
55
66It provides [ Arvados] ( https://arvados.org/ ) and [ Toil] ( http://toil.ucsc-cgl.org/ ) backends. It
77also works with any ` cwl-runner ` that supports the CWL standard command line
8- interface: http://www.commonwl.org/v1.0/CommandLineTool.html#Executing_CWL_documents_as_scripts
8+ interface: < http://www.commonwl.org/v1.0/CommandLineTool.html#Executing_CWL_documents_as_scripts >
99
1010## Installation:
1111
@@ -42,7 +42,9 @@ $ wes-client --info
4242Attachments must be accessible from the filesystem. Workflow runners may also support http URLs or other storage systems.
4343
4444```
45- $ wes-client --attachments="testdata/dockstore-tool-md5sum.cwl,testdata/md5sum.input" testdata/md5sum.cwl testdata/md5sum.cwl.json
45+ $ wes-client --host localhost:8080 --proto http \
46+ --attachments="testdata/dockstore-tool-md5sum.cwl,testdata/md5sum.input" \
47+ testdata/md5sum.cwl testdata/md5sum.cwl.json
4648```
4749
4850### List workflows
@@ -89,7 +91,7 @@ $ wes-server --backend=wes_service.toil_wes --opt extra=--clean=never
8991
9092```
9193$ pip install cwltool
92- $ wes-server --backend=wes_service.cwl_runner --opt runner=cwltool --opt extra=--logLevel=CRITICAL
94+ $ wes-server --backend=wes_service.cwl_runner --opt runner=cwltool --opt extra=--debug
9395```
9496
9597### Pass parameters to cwl-runner
Original file line number Diff line number Diff line change 11#! /bin/sh
22set -ex
3- python setup.py sdist
3+ make dist
44docker build --build-arg version=4.0 --build-arg arvversion=2.2.1 -t commonworkflowlanguage/workflow-service .
55docker run -ti -p 127.0.0.1:3000:3000/tcp \
66 -v$PWD /config.yml:/var/www/wes-server/config.yml \
You can’t perform that action at this time.
0 commit comments