-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/prokka docker image #165
Conversation
|
||
# install dependencies | ||
RUN apt-get update && \ | ||
apt-get -y --no-install-recommends install libdatetime-perl libxml-simple-perl libdigest-md5-perl git default-jre bioperl hmmer wget \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just out of curiosity, do you know which tool needs java (default-jre
) ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one seems to be the only tool that needs java (tool for finding CRISPR elements)
https://github.com/ctSkennerton/minced
docker/toolkit-prokka/VERSION
Outdated
@@ -0,0 +1 @@ | |||
0.1.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we should apply the following versioning scheme to our docker images:
TOOLVERSION_IMAGEVERSION
For example in your case it would be 1.12.0-0
. This way its easier to understand which version of a tool is used. If we update our image because we might are able to create a smaller image then we would increment the last number (i.e 1.12.0-1
). This would be still compatible with semantic versioning. I believe we should apply this scheme to all of our images, but this would be seperate issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've changed the version number in the VERSION file as you suggested.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work. Can be merged after Peters feedback is addressed.
First version of a custom docker image for prokka with support for partial genes, based on this pull request:
tseemann/prokka#219
Possible optimizations: