c1au6i0 / cbiopourer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Documentation on how to upload results to a self hosted cBioPortal instance

luciorq opened this issue · comments

We should add some documentation on uploading the files generated by the cbiopourer package to a self-hosted cBioPortal instance.

There is plenty of documentation on the cBioPortal Documentation website

For a docker-based instance, it is as simple as:

STUDY_NAME="study_x"
INSTANCE_HOSTNAME="localhost"
INSTANCE_PORT="8080"
docker compose exec cbioportal metaImport.py \
  -u "http://${INSTANCE_HOSTNAME}:${INSTANCE_PORT}" \
  -s study/"${STUDY_NAME}"/ -o;

We could even provide a wrapper around this.