-
Notifications
You must be signed in to change notification settings - Fork 6
Galaxy workflow and Dockerfile #707
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
base: dev
Are you sure you want to change the base?
Conversation
Dockerfile.galaxy
Outdated
ENV \ | ||
GALAXY_CONFIG_TOOL_CONFIG_FILE=/qiime2_tools/qiime2_tool_conf.xml \ | ||
GALAXY_CONFIG_CONDA_AUTO_INSTALL=true \ | ||
GALAXY_CONFIG_CONDA_ENSURE_CHANNELS=https://packages.qiime2.org/qiime2/${EPOCH}/${DISTRO}/released,iuc,conda-forge,bioconda,defaults |
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.
oh we should drop defaults from this list
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.
Should --channel defaults
be dropped from the command as well?
|
||
RUN /export/tool_deps/_conda/bin/conda create -y --quiet --solver libmamba --override-channels \ | ||
--channel https://packages.qiime2.org/qiime2/${EPOCH}/${DISTRO}/released --channel iuc --channel \ | ||
conda-forge --channel bioconda --name __qiime2-${DISTRO}@${EPOCH} qiime2-${DISTRO}=${EPOCH} |
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.
something that will be a little annoying, the version of the metapackage isn't actually the epoch, it's whatever timestamp we had when we ended up building it
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.
for example:
qiime2-amplicon=2025.04.20.04.09.37
qiime2-amplicon=2025.04.28.17.25.53
qiime2-amplicon=2025.05.01.03.29.07
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.
Oh that's fun
Adds a build for galaxy docker containers, I opened this off my remote for now to make sure we don't run it and potentially do something stupid to quay before we're sure it's correct enough.