mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
25 lines
609 B
Bash
25 lines
609 B
Bash
#!/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 \
|
|
. \
|
|
-t nfcore/snpeff:${SNPEFF_TAG}.${GENOME} \
|
|
--build-arg GENOME=${GENOME} \
|
|
--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"
|