Files
annotate/organnot/dorgannot
T

16 lines
452 B
Bash
Raw Normal View History

2025-03-05 21:56:39 +01:00
#!/bin/bash
#IMAGE=gricad-registry.univ-grenoble-alpes.fr/leca/projets/malbio/phyloskims
IMAGE=phyloskims/annotate
TAG=latest
singularity -h >/dev/null 2>&1 && DOCKER="singularity --silent exec --bind .:/data docker://"
docker -h >/dev/null 2>&1 && DOCKER="docker run --volume .:/data "
if [[ -z "$DOCKER" ]] ; then
echo "Cannot found neither singularity or docker on your system"
exit 1
fi
eval "${DOCKER}${IMAGE}:${TAG} organnot $*"