Skip to content

[Back-end] A scalable open-source service for platform-independent interactive visual analysis of biomedical data

License

Notifications You must be signed in to change notification settings

heliumdatacommons/Fractalis

 
 

Repository files navigation

Build Status Coverage Report

About

This is the back-end component of the Fractalis project. It is a computational node that is responsible for the MicroETL process and the execution of analytical tasks. See https://fractalis.lcsb.uni.lu/

Demo

Please have a look at this playlist to see a demo of the visual aspects of Fractalis: Playlist.

Installation (Docker)

The easiest and most convenient way to deploy Fractalis is using Docker. All necessary information can be found here.

Installation (Manual)

If you do not want to use docker or want a higher level of control of the several components, that's fine. In fact it isn't difficult to setup Fractalis manually:

  • Install and run Redis, which is available on most Linux distributions. This instance must be accessible by the web service and the workers.
  • Install and run RabbitMQ, which is available on most Linux distributions. This instance must be accessible by the web service and the workers.
  • Install Fractalis via pip3 install fractalis. Please note that Fractalis requires Python3.4 or higher. This must be installed on all machines that will run the web service or the workers.
  • Install required all required R packages. We won't list these packages excplicitely, as they can change frequently. Please refer instead to the Dockerfile, which is always up-to-date, as a new version of Fractalis is only released when the Docker image passes all tests. This must be installed on all machines that will run the web service or the workers.
  • Run and expose the Fractalis web service with whatever tools you want. We recommend gunicorn and nginx, but others should work, too.
  • Run the celery workers on any machine that you want within the same network. (For a simple setup this can be the very same machine that the web service runs on).

Note: The docker-compose.yml describes how the different services are started and how they connect with each other.

Configuration

Use the environment variable FRACTALIS_CONFIG to define the configuration file path. This variable must be a) a valid python file (.py) and b) be available on all instances that host a Fractalis web service or a Fractalis worker.

Tip: Use the default settings as an example for your own configuration file. Please note, that all this files combines Flask settings, Celery settings, and Fractalis settings, which are all listed and documented within this file. Please don't overwrite default settings if you don't know what you are doing. This might have severe implications for security or might cause Fractalis to not work correctly.

Add support for new services

Please refer to this document.

Citation

Manuscript is in preparation.

About

[Back-end] A scalable open-source service for platform-independent interactive visual analysis of biomedical data

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 93.3%
  • HTML 6.3%
  • Dockerfile 0.4%