forked from ga4gh/task-execution-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,43 @@ | ||
# task-execution-server | ||
# task-execution-server | ||
|
||
## Initial tool install | ||
``` | ||
make depends | ||
``` | ||
|
||
|
||
## Build project | ||
``` | ||
make | ||
``` | ||
|
||
## Start task server | ||
``` | ||
./bin/ga4gh-taskserver | ||
``` | ||
|
||
## Start worker | ||
``` | ||
./bin/ga4gh-worker | ||
``` | ||
|
||
## Get info about task execution service | ||
``` | ||
curl http://localhost:8000/v1/jobs-service | ||
``` | ||
|
||
## Get Task Execution Server CWL runner | ||
``` | ||
git clone https://github.com/bmeg/funnel.git | ||
cd funnel/ | ||
virtualenv venv | ||
. venv/bin/activate | ||
pip install cwltool | ||
pip install pyyaml | ||
``` | ||
|
||
## Run Example workflow | ||
``` | ||
python funnel/main.py --tes tes.yaml test/hashsplitter-workflow.cwl --input README.md | ||
``` |