Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

OpenCGA has published a "ready to run" docker image under "opencb/opencga-demo" repository for quick testing and playing without going through hassle to learn, wait and install each and every component of OpenCGA. Once user pull this image, he can immediately start running and using OpenCGA. This image contains the following components :

  1. OpenCGA binaries
  2. MongoDB 4.0
  3. Solr 6.6 ( default
  4. init script ( install catalog and start populate populating data if user select)

Once user run opencga demo image, on first run, it will install catalog , load, annotate variant data from XXXXXX project and index into solr search engine and in mongoDB, start REST server (on port 9090) by default. In case user don't and start OpenCGA daemon. By default it won't load any data, In case user also wish to load some demo data, just pass load just pass skipLoad=false option  option to instruct container to not load any data (user might be interested to load its own data instead of demo) . data. This will instruct OpenCGA Demo container to download data from Corpasome project, load, annotate, calculate stats and index into solr search engine (This process roughly takes 35-40 min depending on internet speed and machine spec).



Code Block
titleRun OpenCGA Demo (Default skipLoad True)
docker run --name demo -d opencb/opencga-demo:1.4.1

...

Code Block
titleConnect OpenCGA Demo Container
docker exec -it demo bash


Code Block
titleGet Container Logs Tail
docker logs demo -f