From ca71221d04e7a97b09683e902fa0300bd2717d9f Mon Sep 17 00:00:00 2001 From: Anthony Bretaudeau Date: Mon, 7 Jun 2021 17:20:37 +0200 Subject: [PATCH 1/2] be less strict on requirements --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2447cbaa..9b7e3cea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ requests -biopython==1.77 +biopython>=1.77 cachetools<4 click>=6.7 wrapt pyyaml decorator -bcbio-gff==0.6.6 +bcbio-gff>=0.6.6 From 2f257dd277e238e1e0ed1a290782fc4a593a02b5 Mon Sep 17 00:00:00 2001 From: Anthony Bretaudeau Date: Mon, 7 Jun 2021 17:28:00 +0200 Subject: [PATCH 2/2] image moved to docker hub --- bootstrap_apollo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap_apollo.sh b/bootstrap_apollo.sh index cb732541..5adb27a1 100755 --- a/bootstrap_apollo.sh +++ b/bootstrap_apollo.sh @@ -31,7 +31,7 @@ export ARROW_GLOBAL_CONFIG_PATH GALAXY_SHARED_DIR mkdir -p "$GALAXY_SHARED_DIR" if ! [[ $SHOULD_LAUNCH_DOCKER -eq 0 ]]; then - docker run --memory=4g -d -p 8888:8080 -v `pwd`/apollo_shared_dir/:/data/ -e "WEBAPOLLO_DEBUG=true" quay.io/gmod/apollo:latest + docker run --memory=4g -d -p 8888:8080 -v `pwd`/apollo_shared_dir/:/data/ -e "WEBAPOLLO_DEBUG=true" gmod/apollo:latest fi echo "[BOOTSTRAP] Waiting while Apollo starts up..."