diff --git a/README.md b/README.md index b79fbbe..a90da92 100644 --- a/README.md +++ b/README.md @@ -1 +1,43 @@ -# task-execution-server \ No newline at end of file +# 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 + +```