Shgasample750ktargz Upd

Standard PLINK formats containing the genetic codes, marker names, and pedigree information.

#!/usr/bin/env bash set -euo pipefail ARCHIVE="$1" TS=$(date +%Y%m%d%H%M%S) CHK=$(sha256sum "$ARCHIVE" | awk 'print $1') STAGE="/opt/shgasample/releases/$TS" BACKUP="/var/backups/shgasample-$TS.tar.gz" tar -czf "$BACKUP" /opt/shgasample || true mkdir -p "$STAGE" tar -xzf "$ARCHIVE" -C "$STAGE" # Inspect, run tests, migrations here ln -sfn "$STAGE" /opt/shgasample/current systemctl restart shgasample curl -fSsf http://localhost:8080/health shgasample750ktargz upd