The program has been updated and moved to PhaBOX 2, which is more user-friendly. In the new version, CHERRY is generalized to all kinds of viruses, more than just phages. In addition, the latest CHERRY allows you to use your MAGs as inputs and predict the interactions between your viruses and MAGs. Hope you will enjoy it. This folder will be no longer maintained.
Our web server for viruses-related tasks (including virus identification, taxonomy classification, lifestyle prediction, host prediction, and protein annotation) is available! You can visit Web Server to use the GUI. We also provided more detailed intermediate files and visualization for further analysis.
CHERRY is a python library for predicting the interactions between viral and prokaryotic genomes. CHERRY is based on a deep learning model, which consists of a graph convolutional encoder and a link prediction decoder.
There are two kind of tasks that CHERRY can work:
Note: we suggest you to install all the package using conda (both miniconda and Anaconda are ok)
After cloning this respository, you can use anaconda to install the CHERRY.yaml. The command is: conda env create -f CHERRY.yaml -n cherry
Due to the limited size of the GitHub, we zip the database. Before using CHEERY, you need to unpack them using the following commands.
cd CHEERY
conda env create -f CHERRY.yaml -n cherry
conda activate cherry
cd dataset
bzip2 -d protein.fasta.bz2
bzip2 -d nucl.fasta.bz2
cd ../prokaryote
gunzip *
cd ..
You only need to activate your 'cherry' environment before using CHERRY in the next time.
conda activate cherry
The input should be a fasta file containing the viral sequences. We provide an example file named "test_contigs.fa". Then, the only command that you need to run is
python run_Speed_up.py [--contigs INPUT_FA] [--len MINIMUM_LEN] [--model MODEL] [--topk TOPK_PRED]
Options
--contigs INPUT_FA
input fasta file
--len MINIMUM_LEN
predict only for sequence >= len bp (default 8000)
--model MODEL (pretrain or retrain)
predicting host with pretrained parameters or retrained paramters (default pretrain)
--topk TOPK_PRED
The host prediction with topk score (default 1)
Example
Prediction on species level with pretrained paramters:
python run_Speed_up.py --contigs test_contigs.fa --len 8000 --model pretrain --topk 1
Note: Commonly, you do not need to retrain the model, especially when you do not have gpu unit.
OUTPUT
The format of the output file is a csv file ("final_prediction.csv") which contain the prediction of each virus. Column contig_name is the accession from the input.
We will supply a script for you to convert the prediction into a complte taxonmoy tree. Use the following command to generate taxonomy tree:
python run_Taxonomy_tree.py [--k TOPK_PRED]
Because there are k prediction in the "final_prediction.csv" file, you need to specify the k to generate the tree. The output of program is 'Top_k_prediction_taxonomy.csv'.
If you know more virus-prokaryote interactions than our pre-trained model (given in Interactiondata), you can add them to train a custom model. Several steps you need to do to train your model:
If you want to predict candidate viruses that infect a set of given bacteria, you need to supply three kinds of inputs:
The command is simlar to the previous one but two more paramter is need:
python run_Speed_up.py [--mode MODE] [--t THRESHOLD]
Example
python run_Speed_up.py --contigs test_contigs.fa --mode prokaryote --t 0.98
Options
--mode MODE (prokaryote or virus)
Switch mode for predicting virus or predicting host
--t THRESHOLD
The confident threshold for predicting virus, the higier the threshold the higher the precision. (default 0.98)
OUTPUT
The format of the output file is a csv file which contain the prediction of each virus. Column prokaryote is the accession of your given prokaryotic genomes. Column virus is the list of viruses that might infect these genomes.
The paper published in the Briefings in Bioinformatics:
Jiayu Shang, Yanni Sun, CHERRY: a Computational metHod for accuratE pRediction of virus–pRokarYotic interactions using a graph encoder–decoder model, Briefings in Bioinformatics, 2022;, bbac182, https://doi.org/10.1093/bib/bbac182
The arXiv version can be found via: CHERRY: a Computational metHod for accuratE pRediction of virus-pRokarYotic interactions using a graph encoder-decoder model
If you have any questions, please email us: jyshang2-c@my.cityu.edu.hk
Error: mkl-service + Intel(R) MKL: MKL_THREADING_LAYER=INTEL is incompatible with libgomp.so.1 library.
You can type in the command export MKL_SERVICE_FORCE_INTEL=1
before runing run_Speed_up.py