tReasure (tRNA Expression Analysis Software Utilizing R for Easy use) is user-friendly tool for the tRNA expression analysis of deep-sequencing experiments for small RNAs using R packages.
tReasure currently implements the following tasks:
1) Making sample list for analysis
2) Pre-processing of trimming adapter and filtering reads
3) Alignment and quantification
4) Statistical analysis for differentially expressed tRNAs gene
5) Visualization
tReasure is a package for the R computing environment and it is assumed that you have already installed R according to your operating system. See the R project at (http://www.r-project.org). tReasure requires the gwidget2 graphical library to run and a few additional packages for the analysis of RNA-seq.
1) For window users : User need to install Rtools before installing tReasure.
5) For linux users : Users need to install libcurl4-openssl-dev and libssl-dev for devtools. - Example for user Ubuntu
```
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install libssl-dev
```
Also, user need to install **libgtk2.0-dev** and **libxml2-dev** for tReasure.
- Example for user Ubuntu
```
sudo apt-get update -y
sudo apt-get install -y libxml2-dev
sudo apt-get install -y libgtk2.0-dev
```
2) For Mac OS users :
Users need to install opnssl for devtools.
- Example using brew
brew update
brew install openssl
Users need to install XQuartz, gtk2 and cairo before installing tReasure.
- Example using brew
brew install cairo
brew install gtk+
It takes a few minutes to install for the first time.
install.packages("devtools")
library("devtools")
devtools::install_github("jinoklee/tReasure",force = TRUE)
library("tReasure")
install.tReasure()
Note If the descriptioin shows as below during the installation, choose "Install GTK+"
Need GTK+? (Restart Required)
Install GTK+
Do not install GTK+
Note If the installation was successful, the tReasure window appears. If the window dose not appear, restart R and type as below.
tReasure::tReasure()
1) For Ubuntu :
Install miniconda and create enviroment
conda create --name r4.1
conda activate r4.1
Install Mamba for bioinformatics packages in conda and need to update conda.
conda install mamba -c conda-forge -y
conda update conda -y
conda update -all
* Install R 4.1 and required packages.
mamba install -c conda-forge r-base=4.1.2
mamba install -c conda-forge r-devtools
mamba install -c conda-forge r-rgtk2
mamba install -c conda-forge r-cairodevice
* Open R and type as below
library("devtools")
devtools::install_github("jinoklee/tReasure",force = TRUE)
library("tReasure")
install.tReasure()
library("tReasure")
tReasure::tReasure()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.