RNafinder is used to search for and identify RNAs. It is a wrapper around a search tool called erpin
This package is based on activities of the OGMP (i.e, priori to 2002), and becomes open source as part of MFannot.
In order to run RNAfinder you need:
- Install erpin on your system.
wget http://rssf.i2bc.paris-saclay.fr/download/Erpin/erpin5.5.4.serv.tar.gz tar -xvzf erpin5.5.4.serv.tar.gz cd erpin5.5.4.serv make # Add erpin (`bin/erpin`) to $PATH cp bin/erpin ~/bin/. - Install the PirObject library.
git clone https://github.com/prioux/PirObject # Add `PirObject.pm` to @INC (Perl package path) sudo cp PirObject/lib/PirObject.pm /usr/share/perl5/. - Install all the necessary PirModels.
sudo git clone https://github.com/BFL-lab/PirModels ~/PirModels - Install the BioPerl library Bio::Tools::CodonTable
sudo cpanm Bio::Tools::CodonTable - Copy the
DOT_RNAfinder.cfgin your home directory under.RNAfinder.cfgor under the directory defined by theRNAFINDER_CFG_PATHenvironment variable.
cp DOT_RNAfinder.cfg .RNAfinder.cfg echo "export RNAFINDER_CFG_PATH=`pwd`" >> ~/.bashrc source ~/.bashrc - Copy
RNAfinderfile in one of your executable directory (e.g: a directory list in $PATH).
cp RNAfinder ~/bin/. - Add the models needed for the run
git clone https://github.com/BFL-lab/MFannot_data echo "# MFannot data installation" >>mfannot-data echo "export EGC=`pwd`/MFannot_data/EGC" >>mfannot-data echo "export MFANNOT_EXT_CFG_PATH=`pwd`/MFannot_data/config" >>mfannot-data echo "export MFANNOT_MOD_PATH=`pwd`/MFannot_data/models" >>mfannot-data echo "export ERPIN_MOD_PATH=`pwd`/MFannot_data/models/Erpin_models" >>mfannot-data echo "export MFANNOT_LIB_PATH=`pwd`/MFannot_data/protein_collections" >>mfannot-data cat mfannot-data >>~/.bashrc source ~/.bashrc Note: At this point the installation of RNAfinder was only tested on Unix systems (Ubuntu and CentOS).
In order to get the help page of RNAfinder you need to type RNAfinder -h in your terminal.
- rns
- tRNA
- rnpB
- rrn5
- IntronI
- IntronII
Run RNAfinder on a fungla mitocondrial genome to identify rns gene and capture the XML result in a file.
file=fungal_mt.fas geneticcode=4 RNAfinder -m rns -g $geneticcode -d $file -X - >result.xml Please see CONTRIBUTING and CONDUCT for details.
GNU General Public License v3.0. Please see License File for more information.