Skip to content

nursa-reactome/fireworks-layout

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reactome Pathways Overview Layout Generator

What is the Reactome Pathways Overview?

The pathways overview (AKA Fireworks) is meant to be a genome-wide, hierarchical visualisation of Reactome pathways in a space-filling graph. To do so the nodes and their layout are set up in a off-line process.

Why an offline layout generator?

The pathways overview layout generator needs to access Reactome graph database to retrieve pathways information in order to create the overview content json files. It assigns a size and a position in the plane for each node in Fireworks (which represents a Reactome pathway).

The generated json files remain immutable for a given Reactome data release, what means they can be generated once and stored for later widget consumption. This strategy ensures the layout generation is not a handicap for the future visualisation.

How to use it?

It is possible that some tweaking is needed to the top level pathways configuration after a certain release. If that is the case in the Fireworks bursts configuration folder there are different files where the top level pathways initial point in the map are defined. Edit them in order to change the position, start angle or burst direction.

The configuration file for Homo sapiens contains the data related to the Reactome main species so it is the one with more top level pathways.

To run the layout algorithm, please follow the following steps:

  1. First package this project to generate the fireworks.jar file:
$mvn clean package
  1. Generate the json files for Homo Sapiens and then decide whether some tweaking is needed
  • Only Homo Sapiens:
$java -jar fireworks.jar \
      -h host \
      -k port \
      -u user \
      -p password \
      -s Homo_sapiens \
      -f /path/to/config \
      -o /path/to/output \
      --verbose
  • Main species and a given "Other species" (being species_name its name):
$java -jar fireworks.jar \
      -h host \
      -k port \
      -u user \
      -p password \
      -s Species_name \
      -f /path/to/config \
      -o /path/to/output \
      --verbose
  1. Generate the json files for all species in Reactome:
$java -jar fireworks.jar \
      -h host \
      -k port \
      -u user \
      -p password \
      -f /path/to/config \
      -o /path/to/output \
      --verbose

To take into account

The generated pathway overview json files are meant to be consumed by the Widget, so they will need to be available from the web clients, so please specify a reachable /path/to/output.

In Reactome the files for the current release are available under the http://www.reactome.org/download/current/fireworks folder. So for example, the file for "Homo Sapiens" is Homo_sapiens.json.

Miscellaneous

Fireworks version 2 exclusively uses the graph-database to generate the layout. You might remember this project existed using the analysis intermediate data, but this is not longer the case. That approach has been deprecated and unmaintained.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%