TRAPID 2.0 is a web application for the annotation and exploration of de novo transcriptomes, available here.
All you need to use TRAPID 2.0 is any modern web browser with JavaScript enabled.
TRAPID 2.0 is freely accessible for academic use. If you have a commercial interest in the platform, or would like to use TRAPID for commercial purposes, please contact us.
If you experience a bug, or if you have any question, remark or suggestion, please contact us or open an issue.
The public instance of TRAPID 2.0 is available here. Follow the below instructions in case you want to install TRAPID 2.0.
- MySQL server (5.7.17 or higher) with sufficient storage
- PHP web server (e.g. Apache)
- Sufficient storage for resources (e.g. Kaiju and DIAMOND indices, NCBI taxonomy files, Rfam data) and experiment temporary data.
-
General:
- PHP (7 or higher)
- Perl (5.14 or higher), with the Inifiles module installed.
- Python 2.7 (for now!). Python module dependencies are listed in
app/scripts/python/requirements.txt
and can be installed via pip (e.g.pip install -r requirements.txt
). - SunGridEngine (SGE) for the computing cluster on which TRAPID jobs run
- Java (1.6 or higher)
-
Initial processing:
- Kaiju
- DIAMOND
- Infernal
- eggNOG-mapper version 1
-
Multiple sequence alignments:
-
Phylogeny:
Note: the exact versions of the third-party tools used within TRAPID can be found in the documentation.
This repository contains the web application and the data processing code (see app/scripts/
). TRAPID additionally requires at least two MySQL databases to run:
- The TRAPID database, that stores experiment data (e.g. transcripts, functional annotation, taxonomy, gene/RNA families, ...), taxonomy data, and other configuration data.
- A reference database (or more), that stores biological sequences, functional annotation, and gene family information for a set of reference species. The reference database is used throughout the web application as well as during the initial processing phase to derive gene family and functional annotations for the processed transcripts (in the case of eggNOG, eggNOG-mapper is used for these two last steps instead).
SQL schemes and example data for the required databases can be found here (TRAPID FTP).
- Install all the programs listed in the
Software requirements
section. - Create the TRAPID and the reference database (here corresponding to eggNOG 4.5), and use the SQL dumps to create and populate the tables.
trapid_db_dump.sql
: TRAPID database. Note that the value indb_name
(data_sources
table) must match the name given to the reference database.reference_db_eggnog_dump.sql
: reference database (eggNOG 4.5 data).- Create database account(s) used to access the databases.
- Create or download necessary files/resources:
- DIAMOND indices, based on the
annotation
table of the reference database. - Kaiju index and accompanying NCBI taxonomy data.
- Rfam library of CMs and clan information files (links for version 14.1).
- DIAMOND indices, based on the
- Clone or download the repository.
- Change configuration:
- Create and edit all necessary INI files in the
app/scripts/ini_files
, starting from the available templates (*.default
, to rename as*.ini
). - Change the database configuration in
app/Config/database.php
.
- Create and edit all necessary INI files in the
- Edit the
.htaccess
file in the root directory as appropriate.