Skip to content

Commit

Permalink
bump vcf-report-5.4.0 to vcf-report-5.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dennishendriksen committed Jul 6, 2023
1 parent 8f6df17 commit b56fbc7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/nxf.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env {
VIP_VERSION = "5.7.0"
VIP_VERSION = "5.7.1"

TMPDIR = "\${TMPDIR:-\${NXF_TEMP:-\$(mktemp -d)}}"
APPTAINER_BIND = "${APPTAINER_BIND}"
Expand Down
2 changes: 1 addition & 1 deletion config/nxf_vcf.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env {
CMD_FILTERVEP = "apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/vep-109.3.sif filter_vep"
CMD_BGZIP = "apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/vep-109.3.sif bgzip"
CMD_SAMTOOLS= "apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/samtools-1.17-patch1.sif samtools"
CMD_VCFREPORT="apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/vcf-report-5.4.0.sif"
CMD_VCFREPORT="apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/vcf-report-5.4.1.sif"
CMD_VCFDECISIONTREE = "apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/vcf-decision-tree-3.5.4.sif"
CMD_VCFINHERITANCEMATCHER = "apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/vcf-inheritance-matcher-2.1.6.sif"

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ download_images() {
files+=("samtools-1.17-patch1.sif")
files+=("vcf-decision-tree-3.5.4.sif")
files+=("vcf-inheritance-matcher-2.1.6.sif")
files+=("vcf-report-5.4.0.sif")
files+=("vcf-report-5.4.1.sif")
files+=("vep-109.3.sif")
files+=("manta-1.6.0.sif")

Expand Down
2 changes: 1 addition & 1 deletion utils/apptainer/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ main() {
images+=("samtools-1.17-patch1")
images+=("vcf-decision-tree-3.5.4")
images+=("vcf-inheritance-matcher-2.1.6")
images+=("vcf-report-5.4.0")
images+=("vcf-report-5.4.1")
images+=("manta-1.6.0")

for i in "${!images[@]}"; do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ From: sif/build/openjdk-17.sif
%post
version_major=5
version_minor=4
version_patch=0
version_patch=1

# install
apk update
apk add --virtual=.build-dependencies curl

mkdir -p /opt/vcf-report/lib
curl -Ls -o /opt/vcf-report/lib/vcf-report.jar "https://github.com/molgenis/vip-report/releases/download/v${version_major}.${version_minor}.${version_patch}/vcf-report.jar"
echo "299865de4cd71fd3ae50edccd36609ec360f1caf246a4554658903270f33d9aa /opt/vcf-report/lib/vcf-report.jar" | sha256sum -c
echo "71fe0413efc63983e8ca3dfbd6c0d9957054b36672b191a09f0848d4a7afe654 /opt/vcf-report/lib/vcf-report.jar" | sha256sum -c

# cleanup
apk del .build-dependencies
Expand Down

0 comments on commit b56fbc7

Please sign in to comment.