Skip to content

Commit

Permalink
Merge pull request #424 from molgenis/chore/bumpReport5.5.2
Browse files Browse the repository at this point in the history
Bump vcf-report to 5.5.2
  • Loading branch information
bartcharbon authored Jul 13, 2023
2 parents 5893f1f + badc78a commit 5047cf2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/nxf_vcf.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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.5.1.sif"
CMD_VCFREPORT="apptainer exec --bind \${TMPDIR} ${APPTAINER_CACHEDIR}/vcf-report-5.5.2.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 @@ -222,7 +222,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.5.1.sif")
files+=("vcf-report-5.5.2.sif")
files+=("vep-109.3.sif")
files+=("manta-1.6.0.sif")
files+=("gado-1.0.1.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 @@ -91,7 +91,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.5.1")
images+=("vcf-report-5.5.2")
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=5
version_patch=1
version_patch=2

# 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 "791302158bf4b87faf6415011afb62efcd2225f42c635e7fd05bc8181fb3bead /opt/vcf-report/lib/vcf-report.jar" | sha256sum -c
echo "f10e0e2826b01ca81301f9c890b6f366a5eb3f14f62d7b932d103fe9e090af0a /opt/vcf-report/lib/vcf-report.jar" | sha256sum -c

# cleanup
apk del .build-dependencies
Expand Down

0 comments on commit 5047cf2

Please sign in to comment.