miRNAs are ~21-nucleotide noncoding RNAs, some of which are known to sit at the heart of regulating gene expression in plant growth, development and response to environmental biotic and abiotic stresses. The most commonly used method for discovering miRNAs is based on nest-generation sequencing (NGS) technologies. However, this type of experimental method requires the identification of expressed miRNAs and has a limited ability to detect miRNAs that exhibit low, linkage, stress, developmental and/or cell-specific expression. Therefore, computational tools are urgently required to locate the precise mature miRNAs from pre-miRNA sequences. Here, we present an ML-based system with random forest algorithm named miRLocator for the computational prediction of mature miRNAs within plant pre-miRNAs. We implemented miRLocator into a Docker image (https://hub.docker.com/r/malab/mirlocator) and web interface (http://miRLocator.omicstudio.cloud) to maximize its practicability. All source codes are availabel at: https://github.com/cma2015/miRLocator.
- Ubuntu (>= 14.04)
- ViennaRNA V2.0:
$ sudo apt-add-repository ppa:j-4/vienna-rna $ sudo apt-get update $ sudo apt-get install vienna-rna
- Python package:
$ pip install scikit-learn scikit-neuralnetwork numpy scipy flask flask-WTF
$ git clone https://github.com/cma2015/miRLocator.git
$ cd miRLocator
$ sudo python upload.pyThen miRLocator will be available at http://0.0.0.0:8080.
- Download Docker for windows
- Double click the EXE file to open it;
- Follow the wizard instruction and complete installation;
- Search docker, select Docker for Windows in the search results and clickit.
- Download Docker for Mac os
- Double click the DMG file to open it;
- Drag the docker into Applications and complete installation;
- Start docker from Launchpad by click it.
- Go to Docker, choose your Ubuntuversion, browse to pool/stable and choose amd64, armhf, ppc64el or s390x._ Download the DEB file for the Docker version you want to install;
- Install Docker, supposing that the DEB file is download into following path:
/home/docker-ce<version-XXX>~ubuntu_amd64.deb
$ sudo dpkg -i /home/docker-ce<version-XXX>~ubuntu_amd64.deb
$ sudo apt-get install -fOnce Docker installation is completed, we can run hello-world image to verify if Docker is installed correctly. Open terminal in Mac OS X and Linux operating system and open CMD for Windows operating system, then type the following command:
$ docker run hello-worldNote: root permission is required for Linux operating system. Note: considering that differences between different computers may exist, please refer to official installation manual if instructions above don’t work.
For Mac OS X and Linux operating systems, open the terminal, for Windows operating system, open CMD. Typing the following command:
# Pull miRLocator from Docker Hub
$ docker pull malab/mirlocator# Run miRLocator in Docker as it in local disk and mount a volume
$ docker run -it -v data_dir:/data malab/mirlocator
# enter into the file dictionary of miRLocator
$ cd miRLocator
# list all permissible command-line arguments
$ python miRLocator.py ‐h# Prediction model construction
$ python miRLocator.py ‐p training ‐i samples/trainingData.txt ‐o train_output ‐m prediction_model ‐k 0
# Prediction model construction with 5‐fold cross validation
$ python miRLocator.py ‐p training ‐i samples/trainingData.txt ‐o train_output ‐m prediction_model ‐k 5# Prediction mode
$ python miRLocator.py ‐p prediction ‐i samples/predictionData.txt ‐o predict_output ‐m samples/trained_prediction_model
# Evaluating the performance of the model
$ python miRLocator.py ‐p prediction ‐i samples/predictionData.txt ‐o predict_output ‐m samples/trained_prediction_model ‐a predictionData_Annotated.txtZhang T, Ju L, Zhai J, Song Y, Song J, Ma C. (2019) miRLocator: A python implementation and web server for predicting miRNAs from pre-miRNA sequences. In: de Folter S. (eds) Plant MicroRNAs. Methods in Molecular Biology, vol 1932. Humana Press, New York, NY
Cui H, Zhai J, Ma C. (2015). miRLocator: machine learning-based prediction of mature microRNAs within plant pre-miRNA sequences. PLoS One, 10(11), e0142753.