layout |
---|
default |
The Galaxy RNA workbench is a framework dedicated to the analysis of RNAs.
The framework is based on a Galaxy instance with 50 RNA related tools:
Category | Tools |
---|---|
RNA Structure Analysis | ViennaRNA, Kinwalker, MEA, RNAz, Cofold, RNAshapes, antaRNA |
RNA Alignment | Compalignp, MAFFT, LocARNA |
RNA Annotation | GotohScan, RNAcode, INFERNAL, RNAmmer, ARAGORN, tRNAscan, RNABOB |
RNA-protein Interaction | DoRiNA, Piranha, RNAcommender, PARalyzer |
Ribosome Profiling | RiboTaper |
RNA-Seq | SortMeRNA, BlockClust , MiRDeep2 |
RNA Target Prediction | TargetFinder |
The Galaxy RNA workbench is based on a dedicated Galaxy instance wrapped into a Docker container. It is based on the Galaxy Docker Image
To use the Galaxy RNA workbench, you will need Docker.
Windows and OS-X users are encouraged to use Kitematic, a graphical User-Interface for managing Docker containers.
For Linux users and people familiar with the command line can follow the instruction on installing Docker from Docker website.
Starting the RNA workbench Docker container is analogous to starting the generic Galaxy Docker image:
$ docker run -d -p 8080:80 bgruening/galaxy-rna-workbench
A detailed discussion of Docker's parameters is given in the Docker manual. It is really worth reading.
Nevertheless, here is a quick rundown:
-
docker run
starts the Image/ContainerIn case the Container is not already stored locally, docker downloads it automatically
-
The argument
-p 8080:80
makes the port 80 (inside of the container) available on port 8080 on your hostInside the container a Apache web server is running on port 80 and that port can be bound to a local port on your host computer. With this parameter you can access your Galaxy instance via
http://localhost:8080
immediately after executing the command above -
bgruening/galaxy-rna-workbench
is the Image/Container name, that directs docker to the correct path in the docker index -
-d
will start the docker container in Daemon mode.For an interactive session, one executes:
$ docker run -i -t -p 8080:80 bgruening/galaxy-rna-workbench /bin/bash
and manually invokes the startup
script to start PostgreSQL, Apache and Galaxy.
Docker images are "read-only". All changes during one session are lost after restart. This mode is useful to present Galaxy to your colleagues or to run workshops with it.
To install Tool Shed repositories or to save your data, you need to export the calculated data to the host computer. Fortunately, this is as easy as:
$ docker run -d -p 8080:80 -v /home/user/galaxy_storage/:/export/ bgruening/galaxy-rna-workbench
Given the additional -v /home/user/galaxy_storage/:/export/
parameter, docker will mount the folder /home/user/galaxy_storage
into the Container under /export/
. A startup.sh
script, that is usually starting Apache, PostgreSQL and Galaxy, will recognize the export directory with one of the following outcomes:
- In case of an empty
/export/
directory, it will move the PostgreSQL database, the Galaxy database directory, Shed Tools and Tool Dependencies and various configure scripts to /export/ and symlink back to the original location. - In case of a non-empty
/export/
, for example if you continue a previous session within the same folder, nothing will be moved, but the symlinks will be created.
This enables you to have different export folders for different sessions - meaning real separation of your different projects.
It will start the Galaxy RNA workbench with the configuration and launch of a Galaxy instance and its population with the needed tools. The instance will be accessible at http://localhost:8080.
For a more specific configuration, you can have a look at the documentation of the Galaxy Docker Image.
The Galaxy Admin User has the username admin@galaxy.org
and the password admin
.
The PostgreSQL username is galaxy
, the password galaxy
and the database name galaxy
.
If you want to create new users, please make sure to use the /export/
volume. Otherwise your user will be removed after your docker session is finished.
To learn about RNA sequencing data analysis, we recommend you to have a look at the training material from the Galaxy Training network, and particularly the tutorial about the Reference-based RNA-seq data analysis.
In the Galaxy RNA workbench, you will also find way to learn about the RNA analyis with some Galaxy tours to show you the way into the Galaxy instance, its tools and possibilities.
The RNA analyses workbench is developed by the RNA Bioinformatics Center (RBC). This center is one of the eight service units of the German Network for Bioinformatics Infrastructure de.NBI, running the German ELIXIR Node ELIXIR Germany.
Contributors to this RNA analyses workbench:
- Andrea Bagnacani
- Bérénice Batut
- Joerg Fallmann
- Bjoern Gruening
- Torsten Houwaart
- Cameron Smith
- Sebastian Will
- Dilmurat Yusuf