Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds Dockerfile to create the following docker image,
clockwork:0.1.0
Hosted here: https://hub.docker.com/r/evanbiederstedt/clockwork/tags
It appears to work for me:
There are a few changes from the Singularity recipe file, here:
https://github.com/iqbal-lab-org/clockwork/blob/master/singularity/clockwork_container.def
https://github.com/iqbal-lab-org/clockwork/blob/master/scripts/install_dependencies.sh
e.g.
https://github.com/iqbal-lab-org/clockwork/blob/master/scripts/install_dependencies.sh#L186
Apparently
--process-dependency-links
is deprecated in the newest version of pip; I would get the warning building the Docker imageand I believe I had a fatal error locally, i.e.
Another thing is that I moved executables to be used in
/bin
. The installation script creates symbolic links, which are ok too---they don't work immediately as executables without invoking./executable
, so I did this instead on the fly.Naturally, it all depends how you'd like to call these tools within the NF scripts. One could also re-organize the tools in a number of ways for ease of use. Feel free to edit.