Skip to content

Commit

Permalink
fix: remove path to hgnc_xlink.tsv from Docker entrypoint (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Jul 11, 2024
1 parent 76b80af commit f061c9d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions utils/docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,12 @@ set -euo pipefail
#
# PATH_HPO_DIR -- path to the directory with HPO files
# default: /data/hpo
# PATH_HGNC_XLINK -- path to the TSV xlink file
# default: /data/hgnc_xlink.tsv
# HTTP_HOST -- host to listen on
# default: 0.0.0.0
# HTTP_PORT -- port
# default: 8080

PATH_HPO_DIR=${PATH_HPO_DIR-/data/hpo}
PATH_HGNC_XLINK=${PATH_HGNC_XLINK-/data/hgnc_xlink.tsv}
HTTP_HOST=${HTTP_HOST-0.0.0.0}
HTTP_PORT=${HTTP_PORT-8080}

Expand All @@ -28,7 +25,6 @@ else
exec \
viguno server run \
--path-hpo-dir "$PATH_HPO_DIR" \
--path-hgnc-xlink "$PATH_HGNC_XLINK" \
--listen-host "$HTTP_HOST" \
--listen-port "$HTTP_PORT"
fi
Expand Down

0 comments on commit f061c9d

Please sign in to comment.