Closed lecorguille closed 2 weeks ago
Oh this is fantastic! Thanks for sharing. I think the proper solution would be to extend the playrole to allow a list of categories and extend the Galaxy API to consume this list. Do you have time to work on this?
Heu ... currently, actually, any exceed time nor knowledge in ansible. But never say never!
The new 24.1 image contains a lot of changes and reflects the latest developments in Galaxy. I would like to close this PR, but please feel free to reopen and rebase against the latest version.
Please give it a try:
docker run -p 8080:80 -p 8021:21 -p 4002:4002 --privileged=true -e "GALAXY_DESTINATIONS_DEFAULT=slurm_cluster_docker" -v /tmp/galaxy-data/:/export/ quay.io/bgruening/galaxy:24.1
... or any other combination. The readme has been updated. Please add any useful tip to it.
For a list of changes, see the Changelog.
Hi all, In our Galaxy instance, we need to duplicate tools in the tools panel.
Indeed, we order tools by area and tasks:
But some tools can be share by both LS-MS and GC-MS (Normalisation) and some by the three thematics (Statistical Analysis).
But when you use the ansible-galaxy-tools solution with
RUN install-tools $GALAXY_ROOT/my_tool_list.yml
, it seems that you can't do that without modify manually the shed_tool_conf.xml (as you can do on your standard Galaxy instance at home)So if someone have the same need, I have just write a little script to do that: https://github.com/lecorguille/galaxy_utils/blob/master/galaxy_duplicate_tools.py It's not as elegan as an ansible role but it works! 👍
In the Dockerfile, you have that:
OR mayby I just waste my time and you have a more elegan solution?