Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkanche/epiviz-app-test
https://github.com/jkanche/epiviz-app-test
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jkanche/epiviz-app-test
- Owner: jkanche
- License: other
- Created: 2016-08-29T17:18:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-29T17:18:52.000Z (over 8 years ago)
- Last Synced: 2024-10-30T19:12:33.480Z (2 months ago)
- Language: HTML
- Size: 4.25 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Epiviz
======Epiviz is a scientific information visualization tool for genetic and epigenetic data, used to aid in the exploration and understanding of correlations between various genome features.
For more information, visit - http://epiviz.github.io/
Using any PHP supported webserver
---------------------------------
Copy the Epiviz directory to the webserver configured directory. Navigate to /epiviz/index.php on your browser.Using PHP
---------
PHP (http://php.net/) lets your run local webservers. Navigate to localhost:8181 on your browser.
To run epiviz use:
```
php.exe -S localhost:8181 -t
```Using Docker
-------------------This repository includes a `Dockerfile` to run a webserver that serves
the epiviz web application. It includes a `site-settings.js` file that
sets up data backends pointing to the University of Maryland. Update
that file to use a different backend. It is registered in the DockerHub
registry: (https://hub.docker.com/r/epiviz/epiviz/)[https://hub.docker.com/r/epiviz/epiviz/].
To run it use:```shell
docker pull epiviz/epiviz
docker run --name epiviz-app -d -p 80:80 epiviz/epiviz
```