mmzdouc / FERMO

Dashboard for analysis of liquid chromatography (tandem) mass spectrometry data.
https://fermo.bioinformatics.nl/example
MIT License
28 stars 2 forks source link
biological-data-analysis exposomics mass-spectrometry metabolomics python3

fermo_gui

fermo_gui is the graphical user interface for the metabolomics data analysis pipeline fermo_core. It allows to start new analysis jobs, load existing session files, and visualize results.

For more information about FERMO, fermo_gui, or fermo_core, see the Documentation.

Nota bene: fermo_gui has only been tested on Linux systems. While the Docker-installation is likely to work on other systems as well, they are not officially supported. See Fermo Online for a user-friendly installation-free version.

Table of Contents

Installation and Quickstart

With docker from GitHub

Usage

For more information about FERMO, fermo_gui, or fermo_core, see the Documentation.

Attribution

License

FERMO is licensed under the MIT License.

Authors

Publications

See FERMO online for information on citing fermo_gui.

Versions

All previous version of FERMO can be accessed via its Zenodo repository.

For Developers

Dependencies

A list of dependencies can be found in the file pyproject.toml.

Installation and Setup

Config file

The flask application automatically reads configuration settings from a config.py file in the instance directory in the fermo_gui source directory (not in version control for security reasons). If not available, fermo_gui will employ default settings, assuming that the application runs offline. These default settings must not be used if the application is to be deployed to production. The following default settings are used:

SECRET_KEY: str
ONLINE: bool = True
MAX_RUN_TIME: int = 3600
CELERY: dict = {
    "broker_url": "redis://localhost",
    "result_backend": "redis://localhost",
    "task_ignore_result": True,
    "task_soft_time_limit": 3600
}
MAIL_USERNAME: str
MAIL_PASSWORD: str
MAIL_DEFAULT_SENDER: str
MAIL_SERVER: str
MAIL_PORT: int
MAIL_USE_TLS: bool
MAIL_USE_SSL: bool

Further, the number of workers can be adjusted in the entrypoint_docker.sh script.

Contributing

Contributions, whether filing an issue, making a pull request, or forking, are appreciated. Please see Contributing for more information on getting involved. Contributors agree to adhere to the specified Code of Conduct. For technical details, see the For Developers pages in the Documentation.