nf-core_modules/modules/snpeff/build.sh

26 lines
609 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
# Build and push all containers
build_push() {
GENOME=$1
SNPEFF_CACHE_VERSION=$2
SNPEFF_TAG=$3
docker build \
2022-05-05 10:57:14 +00:00
. \
-t nfcore/snpeff:${SNPEFF_TAG}.${GENOME} \
--build-arg GENOME=${GENOME} \
2022-05-05 10:57:14 +00:00
--build-arg SNPEFF_CACHE_VERSION=${SNPEFF_CACHE_VERSION} \
--build-arg SNPEFF_TAG=${SNPEFF_TAG}
docker push nfcore/snpeff:${SNPEFF_TAG}.${GENOME}
}
build_push "GRCh37" "75" "5.0"
build_push "GRCh38" "99" "5.0"
build_push "GRCm38" "99" "5.0"
build_push "CanFam3.1" "99" "5.0"
build_push "WBcel235" "99" "5.0"