layout | classes | excerpt | last_modified_at | tags | header | toc | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
splash |
|
MSK-ACCESS help documents |
2018-05-11 15:12:19 -0400 |
|
|
true |
MSK-ACCESS workflows came into existence because of the need to write flexible, portable and easy to use tools.
- Containers : Using docker to host tool images to be used by Common Workflow Language
- Common Workflow Language (CWL) : Have commandline tools written in common workflow language specification.
- Workflow of workflow : We will join multiple CWL workflows togather to create a final workflow.
Here is how to install these tools without sudo rights:
Please replace workflow with repo containing the workflow of your interest
curl -LO https://github.com/msk-access/workflow/archive/master.zip
unzip workflow-master.zip
cd workflow-master
python setup.py install --user
Add this to your ~/.bash_profile
to get access to the *.cwl
tools:
# Set PATH to include local python bin if found
if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin:$PATH"
fi