File tree 3 files changed +7
-5
lines changed
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 && \
12
12
sh -c 'echo deb https://oss-binaries.phusionpassenger.com/apt/passenger buster main > /etc/apt/sources.list.d/passenger.list'
13
13
14
14
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 && \
16
16
pip3 install pip==21.1.3
17
17
18
18
RUN 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
5
5
6
6
It provides [ Arvados] ( https://arvados.org/ ) and [ Toil] ( http://toil.ucsc-cgl.org/ ) backends. It
7
7
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 >
9
9
10
10
## Installation:
11
11
@@ -42,7 +42,9 @@ $ wes-client --info
42
42
Attachments must be accessible from the filesystem. Workflow runners may also support http URLs or other storage systems.
43
43
44
44
```
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
46
48
```
47
49
48
50
### List workflows
@@ -89,7 +91,7 @@ $ wes-server --backend=wes_service.toil_wes --opt extra=--clean=never
89
91
90
92
```
91
93
$ 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
93
95
```
94
96
95
97
### Pass parameters to cwl-runner
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -ex
3
- python setup.py sdist
3
+ make dist
4
4
docker build --build-arg version=4.0 --build-arg arvversion=2.2.1 -t commonworkflowlanguage/workflow-service .
5
5
docker run -ti -p 127.0.0.1:3000:3000/tcp \
6
6
-v$PWD /config.yml:/var/www/wes-server/config.yml \
You can’t perform that action at this time.
0 commit comments