- Sergio Díaz del Pino
- Pablo Rodríguez Brazzarola
- Marcos Sepúlveda Romero
Bitlab Group
Interactive visualization based on heatmaps to preview a large amount of chromosome and annotation comparisons.
Python 3 & Bower (Virtualenv is recommended)
Get project from GitHub and Python virtualenv
git clone https://github.com/Sergiodiaz53/Xcout.gitsudo apt-get install python3 npm virtualenvvirtualenv -p python3 Xcoutnpm -g install bower
To activate new virtualenv
source bin/activate
Database config (PostgreSQL)
sudo apt-get install postgresql postgresql-contribsudo -u postgres createuser xcoutdjangosudo -u postgres createdb xcoutdbsudo -u postgres psqlalter user xcoutdjango with encrypted password 'bitlab2310';grant all privileges on database xcoutdb to xcoutdjango;- Use
Ctrl+Dor\qto exit the console
Install requirements.txt
pip install -r requirements.txt
Install bower components
cd staticbower installcd ..
Setup Django
python manage.py makemigrationspython manage.py migratepython manage.py createsuperuser
Run Xcout
python manage.py runserver_plus
'NAME': 'xcoutdb',
'USER': 'xcoutdjango',
'PASSWORD': 'bitlab2310',
'HOST': 'localhost',