Skip to content

Commit 045521d

Browse files
committed
README: some fixes
1 parent c2777e8 commit 045521d

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1414
RUN 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

1818
RUN apt-get install -y --no-install-recommends libcurl4-openssl-dev libssl-dev

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Execution Service](https://github.com/ga4gh/workflow-execution-schemas) 1.0.0 AP
55

66
It provides [Arvados](https://arvados.org/) and [Toil](http://toil.ucsc-cgl.org/) backends. It
77
also 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
4242
Attachments 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

wes-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
set -ex
3-
python setup.py sdist
3+
make dist
44
docker build --build-arg version=4.0 --build-arg arvversion=2.2.1 -t commonworkflowlanguage/workflow-service .
55
docker run -ti -p 127.0.0.1:3000:3000/tcp \
66
-v$PWD/config.yml:/var/www/wes-server/config.yml \

0 commit comments

Comments
 (0)