IVA
v2.0
v2.0
  • README
  • Overview
  • Installation
  • User Manuals
    • IVA General Usage
    • Variant Browser
    • Case Interpreter
    • Variant Analysis
    • Overview
  • About
    • Who is using IVA
    • Gallery
    • FAQ
  • User Manual
    • Introduction
    • Logging in
      • Login
    • Metadata and Clinical Data
    • Variant Analysis
      • Variant Browser
    • Clinical Analysis
      • Case Interpreter
  • Admin Guide
    • Installation
      • How to build from source code
      • Docker
    • Developers
      • Libraries
    • Admin Dashboard
      • Study Admin
    • Configuration
  • Developer
    • Release Notes
    • Roadmap
    • Source Code and Issues
    • Component Architecture
    • Team
Powered by GitBook
On this page
  • README
  • Overview
  • IVA is a generic Interactive Variant Analysis browser that can be used for the visualization of biological information from various data sources. IVA uses data from OpenCGA which is an OpenCB project.
  • Overview
  • <<<<<<< HEAD:docs/README.md
  • How to build

Was this helpful?

Edit on Git

README

NextOverview

Last updated 3 years ago

Was this helpful?

<<<<<<< HEAD:docs/README.md

README

Overview

IVA is a generic Interactive Variant Analysis browser that can be used for the visualization of biological information from various data sources. IVA uses data from which is an OpenCB project.

Logo

Overview

The Interactive Variant Analyser (IVA) is the web user interface for OpenCGA that provides unprecedented features for real-time interaction with genomic data. It is suitable for any scale; from the detailed interpretation of a single genomic test through to assessing the genetic diversity of hundreds of thousands of aggregated genomes. It is not just for bioinformaticians; it provides simple and convenient access for biomedical researchers and clinical scientists as well.

develop:README.md

Documentation

Issues Tracking

Release Notes and Roadmap

Versioning

Maintainers

We recommend to contact IVA developers by writing to OpenCB mailing list opencb@googlegroups.com. The main developers and maintainers are:

<<<<<<< HEAD:docs/README.md

  • Ignacio Medina (im411@cam.ac.uk) (Founder and Project Leader)

  • Antonio Altamura (antonio.altamura@genomicsengland.co.uk)

  • Javier Perez Florido (javier.perez.florido.ext@juntadeandalucia.es)

  • Alexis Martínez (alexis.martinez@juntadeandalucia.es)

    develop:README.md

  • Ignacio Medina (im411@cam.ac.uk) (Founder and Project Leader)

  • Javier Perez Florido (javier.perez.florido.ext@juntadeandalucia.es)

  • Alexis Martínez (alexis.martinez@juntadeandalucia.es)

Former Contributors

  • Swaathi Kandasaamy (sk913@cam.ac.uk)

  • Asuncion Gallego (agallego@cipf.es)

Contributing

IVA is an open-source and collaborative project, currently developement is mainly carried out by Stefan Gräf and Ignacio Medina teams from the University of Cambridge and Joaquin Dopazo team from CIBERER. We appreciate any help and feedback from users, you can contribute in many different ways such as simple bug reporting and feature request. Dependending on your skills you are more than welcome to develop client tools, new features or even fixing bugs.

How to build

IVA is mainly developed in JavaScript. It requires of OpenCB JSorolla project to be built, this is a JavaScript library developed for several OpenCB web-based projects, it can be found as Git submodule in IVA.

Stable releases are merged and tagged at master branch, you are encourage to use latest stable release for production. Current active development is carried out at develop branch, only building is guaranteed and bugs are expected, use this branch for development or for testing new functionalities.

Prerequisites

Installing Node.js and npm

Cloning

IVA is an open-source project and can be downloaded either as package(tar.gz) from GitHub releases or source code by cloning the repository.

Default develop branch can be downloaded by executing:

$ git clone https://github.com/opencb/iva.git
Cloning into 'iva'...
remote: Enumerating objects: 126, done.
remote: Counting objects: 100% (126/126), done.
remote: Compressing objects: 100% (72/72), done.
remote: Total 10370 (delta 70), reused 85 (delta 38), pack-reused 10244
Receiving objects: 100% (10370/10370), 4.70 MiB | 61.00 KiB/s, done.
Resolving deltas: 100% (6064/6064), done.

Latest stable release at master branch can be downloaded by executing:

$ git clone -b master https://github.com/opencb/iva.git
Cloning into 'iva'...
remote: Counting objects: 624, done.
remote: Total 624 (delta 0), reused 0 (delta 0), pack-reused 624
Receiving objects: 100% (624/624), 139.37 KiB | 191.00 KiB/s, done.
Resolving deltas: 100% (356/356), done.
Checking connectivity... done.

After this, in both cases, you must execute the following command to fetch the JSorolla submodule (only the first time):

git submodule update --init

Go to ./lib/jsorolla and checkout to develop branch of Jsorolla by

cd lib/jsorolla
git checkout develop
npm run install

Run

To run IVA in dev mode (hot reload for CSS files and hot restart (aka live reloading) for JS scripts), run

npm run serve.

Build

To buil IVA, just run

npm run build.

Test

Having the project running through the command npm run serve, you can run the interactive E2E test suite by running the command

npm run e2e

Run tests and generate a report

To run test in headless version (no browser) and generate a report, run

npm run e2e-report

for more help, try npm run e2e-report -h.

when completed, all compiled files will be located under the build folder.

Testing

You can copy build content to a web server such as Apache HTTP Server and open your favourite internet browser to open IVA.

  1. npm install --dev

  2. Create a bin folder inside your test folder in root path

  3. Move selenium bin and chrome bin inside that bin folder.

  4. npm run test-e2e ( or ./node_modules/.bin/nightwatch test/e2e/clinical-prioritization.js if you want execute just one)

For Windows environment, just add the suffix -win

npm run e2e-win
npm run e2e-report-win

for more help, try npm run e2e-report-win -h.

The HTML report will be generated in ./report. The filename will have the structure <OPENCGA_STUDY_FQN>__<TIME>_<DATE>.html

You can find IVA documentation and tutorials at: .

You can report bugs or request new features at .

Releases notes are available at .

Roadmap is available at . You can report bugs or request new features at .

IVA is versioned following the rules from .

To run and build IVA you need: and .

To install you can visit .

We use as testing framework.

Execute Tests in development with nightwatch()

Prerequisite: make sure you have JDK installed, with at least version 8. If you don't have it, you can grab it from .

Selenium server. Download the latest release .jar from . i.e. selenium-server-standalone-3.7.0.jar

Chromedriver. Download from that version which supports your chrome versión. You can review what version fits your browser here .

https://github.com/opencb/iva/wiki
GitHub issue tracking
GitHub releases
GitHub milestones
GitHub issue tracking
Semantic versioning
Node.js
npm
Node.js
this link
Cypress.io
http://nightwatchjs.org/
http://www.oracle.com/technetwork/java/javase/downloads/index.html
http://selenium-release.storage.googleapis.com/index.html
https://sites.google.com/a/chromium.org/chromedriver/downloads
https://chromedriver.storage.googleapis.com/2.33/notes.txt
OpenCGA