Next Article in Journal
Early Depletion of Neutrophils Reduces Retinal Inflammation and Neovascularization in Mice with Oxygen-Induced Retinopathy
Previous Article in Journal
Genomic Exploration of Distinct Molecular Phenotypes Steering Temozolomide Resistance Development in Patient-Derived Glioblastoma Cells
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

LSTM4piRNA: Efficient piRNA Detection in Large-Scale Genome Databases Using a Deep Learning-Based LSTM Network

1
Department of Electrical Engineering, National Chiayi University, Chiayi 600, Taiwan
2
MindtronicAI Co., Ltd., Taipei 116, Taiwan
3
Department of Mechatronics Engineering, Incheon National University, Incheon 22012, Republic of Korea
*
Authors to whom correspondence should be addressed.
Int. J. Mol. Sci. 2023, 24(21), 15681; https://doi.org/10.3390/ijms242115681
Submission received: 20 September 2023 / Revised: 15 October 2023 / Accepted: 24 October 2023 / Published: 27 October 2023
(This article belongs to the Special Issue Special Protein or RNA Molecules Computational Identification 2024)

Abstract

:
Piwi-interacting RNAs (piRNAs) are a new class of small, non-coding RNAs, crucial in the regulation of gene expression. Recent research has revealed links between piRNAs, viral defense mechanisms, and certain human cancers. Due to their clinical potential, there is a great interest in identifying piRNAs from large genome databases through efficient computational methods. However, piRNAs lack conserved structure and sequence homology across species, which makes piRNA detection challenging. Current detection algorithms heavily rely on manually crafted features, which may overlook or improperly use certain features. Furthermore, there is a lack of suitable computational tools for analyzing large-scale databases and accurately identifying piRNAs. To address these issues, we propose LSTM4piRNA, a highly efficient deep learning-based method for predicting piRNAs in large-scale genome databases. LSTM4piRNA utilizes a compact LSTM network that can effectively analyze RNA sequences from extensive datasets to detect piRNAs. It can automatically learn the dependencies among RNA sequences, and regularization is further integrated to reduce the generalization error. Comprehensive performance evaluations based on piRNAs from the piRBase database demonstrate that LSTM4piRNA outperforms current advanced methods and is well-suited for analysis with large-scale databases.

1. Introduction

The Piwi-interacting RNAs (piRNAs) are a new class of small, endogenous, non-coding RNAs (ncRNAs) that regulate gene expression through various mechanisms. These piRNAs can further interact with Piwi-class proteins to form the piRNA-induced complexes that silence transposons in germline cells. Research has demonstrated that piRNAs are associated with the control of transposon silencing, epigenetic regulation, and RNA silencing in diverse organisms [1,2,3]. Furthermore, recent studies have linked piRNAs to virus defense, as well as to the development and progression of many types of cancer [4,5,6,7]. Due to their potential as therapeutic targets for certain diseases, there is a growing interest in identifying novel piRNAs. Therefore, efficient computational methods are required for large-scale piRNA detection to accelerate piRNA exploration.
PiRNAs are the largest class of small ncRNAs, typically ranging in sequence length from 24 to 33 nucleotide bases [8,9]. However, piRNAs lack conserved structure motifs and sequence homology across species, which makes it challenging to recognize them [10]. Currently, there are two main classes of piRNA detection methods. The first class utilizes sequence-based features from known piRNAs to predict new ones. While piRNAs tend to have a uridine base at the first position and an adenosine base at the tenth position, relying solely on the base position to predict piRNAs is not accurate [11]. The k-mer scheme approach, piRNAPredictor [12], takes the frequencies of k-mer features and linear discriminant analysis (LDA) to predict piRNAs with better performance. Furthermore, piRNAdetect [13] enhances the prediction accuracy by using N-gram models along with a support vector machine (SVM) to parse and classify the piRNAs. By using the deep learning technique, piRNN [14] first summarizes the k-mer motifs based on their base positions and creates a corresponding feature vector with 1364 items. The feature vector is then normalized and fed into a convolutional neural network (CNN) to make sound predictions for piRNAs. In addition, GAWE [15] utilizes ensemble weight learning for the combined features and random forest classification to predict piRNAs with high accuracy. As some piRNAs have been found to be derived from genomic piRNA clusters, the second class of piRNA detection methods employs the genomic features of the clustering locus to predict piRNAs. Several clustering-based methods have been developed to predict clustered piRNAs [16,17], and the clustering features can further be incorporated with sequence-derived features by using multiple kernel SVM [18,19]. However, it should be noted that clustering-based approaches only work for clustered piRNAs and that some databases may not provide clustering information.
As the amount of genomic data continues to surge, analyzing extensive databases has become increasingly challenging. A prime example is the piRBase database, which has seen staggering growth in the number of sequences of human piRNAs from 32,000 [9] to over 8.5 million [20]. However, there is a lack of effective tools capable of analyzing such a large database with millions of data for piRNA prediction. To bridge this gap, we have developed a sequence-based detection algorithm, called LSTM4piRNA, that employs long short-term memory (LSTM) to predict piRNAs accurately. Unlike previous approaches that manually select features from known piRNAs, LSTM4piRNA can automatically extract and learn useful features from a large database to maximize detection performance. The performance results based on the piRNAs in the piRBase [9,20] database show that LSTM4piRNA outperforms previous algorithms in terms of efficiency and accuracy. Furthermore, we have developed a web server that allows users to easily predict piRNAs through LSTM4piRNA. The user can submit RNA sequences in the FASTA format to the server and check the predicted results.

2. Results

To evaluate the performance of the proposed LSTM4piRNA, we conducted four-fold cross-validation experiments using constructed datasets on piRNAs from four species: H. sapiens, R. norvegicus, M. musculus, and C. elegans. The dataset was evenly divided into four subsets. Each subset was used as the testing set in turn, while the remaining subsets were used for training. The performance of piRNA detection is assessed in terms of the accuracy (ACC) = ( TP + TN ) ( TP + TN + FP + FN ) , the sensitivity (SEN) = TP TP + FN , and the positive predictive value (PPV) = TP TP + FP . TP denotes the number of piRNAs correctly identified, while TN denotes the number of correctly identified negative samples. FP represents the number of negative samples mistakenly classified as piRNAs, and FN represents the number of piRNAs missed in the detection process. In addition, the harmonic metric F-score = 2 / ( 1 S E N + 1 P P V ) is also employed to assess the performance.

2.1. Regularization and Generalization

We first evaluated the influence of the dropout rate on the piRNA dataset. The use of dropout regularization in neural networks serves as a preventive measure against overfitting. The detection performance at different dropout rates, ranging from 0 to 0.8 with a step size of 0.2, is illustrated in Figure 1a,b. The adoption of dropout regularization can enhance the detection performance across a range of dropout rates for the piRBase v1.0 dataset. For the piRBase v3.0 dataset, a dropout rate between 0.2 and 0.4 proves to be most effective, especially when accuracy is the main consideration, except for the C. elegans species. Given that the C. elegans dataset is relatively smaller, a higher dropout rate can mitigate overfitting on training data and enhance detection performance. Selecting an appropriate dropout rate is essential for reducing generalization error. Therefore, for piRNA detection in LSTM4piRNA, we have set the dropout rate to 0.2.
For data generalization, Figure 2a,b illustrate the accuracy of data generalization at various probabilities ranging from 0 to 1.0 with a step size of 0.2. Employing data generalization can effectively reduce generalization errors, leading to a more robust training model. This strategy can result in more substantial improvements to the piRBase v1.0 dataset, particularly when working with limited data quantities. For all species, generalizing probabilities greater than 0.4 can offer better accuracy, with particular efficacy observed for the C. elegans dataset. To augment piRNA detection, LSTM4piRNA has set the generalizing probability to 0.6.

2.2. Accurate Prediction of piRNA Sequences

We evaluated the effectiveness of LSTM4piRNA against the following algorithms: piRNAPredictor, GAWE, and piRNN. For the performance comparison, piRNAPredictor, GAWE, and piRNN with default settings were evaluated on the same test datasets. The evaluation results and total run time (in seconds) for each species are summarized in Table 1 and Table 2. The computation time was measured on a 64-bit server machine running Linux kernel 5.8.0 with 8-core CPUs clocked at 3.5 GHz and 32 GB RAM.
Except in terms of the sensitivity metric for R. norvegicus species, LSTM4piRNA consistently outperforms the other methods in most evaluation metrics for the piRBase v1.0 dataset. It achieves the highest accuracy, PPV, and F-score (which evaluates the harmonic mean of SEN and PPV), as illustrated in Table 1.
While GAWE exhibits higher sensitivity for the R. norvegicus species, it comes with significantly higher time complexity due to its adoption of an ensemble and iterative framework. In comparison, LSTM4piRNA’s sensitivity for R. norvegicus is nearly on par with GAWE, with only a minor performance discrepancy. Moreover, although LSTM4piRNA achieves the highest performance scores across most test cases, it demands the least computation time for predictions. On the other hand, while piRNN exhibits promising prediction performance, its computation time is nearly tenfold compared to our proposed algorithm, as piRNN has a larger number of neurons and filters, making it less suitable for analyzing large-scale datasets. Although deep learning-based approaches exhibit improved performance metrics for piRNA detection, they may entail significant computational costs. Therefore, careful design of effective deep neural networks is essential to achieve promising performance while maintaining reasonable computational expenses.
Based on the performance assessment using the piRBase v3.0 datasets, we confirm that LSTM4piRNA achieves higher performance metrics across all species, with a remarkable performance gap as shown in Table 2. Please note that, in our performance evaluation on piRBase v3.0, we only obtained the analysis results for LSTM4piRNA and piRNAPredictor due to the limited computational resources. However, we are able to assess all algorithms for C. elegans because its dataset size is relatively smaller compared to that of other species. Based on the simulation results, we can verify that LSTM4piRNA has better scalability than piRNN, which adopts convolutional neural networks to predict piRNAs. Additionally, we confirm that LSTM4piRNA requires less computation time compared to other algorithms, while it achieves distinctly higher ACC, SEN, PPF, and F1-scores.
Overall, LSTM4piRNA can automatically learn the critical features and provide superior prediction performance compared to approaches that use artificial feature selection. Furthermore, LSTM4piRNA has the fastest prediction efficiency among all compared algorithms for all datasets.

3. Discussion

Due to the lack of distinct characteristics for piRNA identification, accurate prediction of piRNAs poses a significant challenge. Most existing piRNA detection methods predominantly rely on machine learning techniques that necessitate manual feature selection. However, this approach may overlook critical features or incorporate irrelevant data, leading to suboptimal prediction performance. To address this issue, we introduce LSTM4piRNA, a novel computational approach for piRNA detection, and also develop a web-based application for piRNA analysis. By leveraging LSTM networks, LSTM4piRNA can autonomously learn sequence characteristics from unstructured data and incorporate generalization and regularization to enhance model resilience. Through extensive performance assessments using piRNAs from the piRBase database, LSTM4piRNA has demonstrated impressive accuracy, outperforming all other existing algorithms in piRNA detection. Moreover, LSTM4piRNA is a time-efficient algorithm that can efficiently process large-scale databases, and its use can be further extended to analyze other similar databases. To make the software more accessible, we offer a web server version of LSTM4piRNA, ensuring it’s available to researchers who may not have a strong software background or ample computational resources. The algorithm we propose carries significant potential to advance the field of piRNA research and aid in exploring their clinical applications.
The performance of piRNA detection is generally influenced by both the characteristics of the training dataset and the prediction model. To achieve good performance in a sequence-based approach, it is essential to have a large enough training dataset to cover all species and a prediction model capable of learning the representative features of the dataset. Although most machine learning approaches use artificial feature selection techniques to extract features from the dataset, this may not be suitable for large datasets due to the difficulty in identifying all significant features. In contrast, LSTM4piRNA can efficiently handle large datasets and automatically learn the critical features. This method can also be extended to analyze other databases with vast amounts of sequential data for further analysis. As evidenced in this study, LSTM4piRNA successfully leverages LSTM for feature extraction, leading to effective prediction of piRNAs and exhibiting exceptional prediction performance on both the piRBase v1.0 and v3.0 datasets.
While genome sequences are a fundamental feature commonly used in genomic analysis, LSTM4piRNA cannot fully predict all piRNAs due to biological diversity. To overcome the limitation, integrating biological priors such as genomic loci and regulatory network models into the algorithm would be an appropriate direction for future studies. Note that not all genomic sequences come with such biological prior information, and the integration might also require the adoption of additional machine learning techniques. Furthermore, incorporating different artificial intelligence frameworks into the piRNA prediction algorithm would facilitate a deeper understanding of the roles of specific piRNA sequences.

4. Materials and Methods

Effective identification of piRNAs through genome sequences requires a mechanism that can learn the relevant features within the sequences. However, manually summarizing and consolidating general features from piRNAs, as attempted in previous studies, may lead to overfitting or the exclusion of important features. As the LSTM network is designed to model chronological sequences, it can automatically learn both long-term and short-term dependencies over the sequences [21,22]. Thus, LSTM networks are applicable to a variety of sequential problems, including speech processing, grammar learning, and semantic parsing. For the sake of piRNA detection, each nucleotide base is encoded into a one-hot vector, and these vectors are then concatenated into a vector sequence. We apply the LSTM network to this concatenated vector sequence to uncover correlations across the sequences, thus transforming the input sequence into informative base embedding. Based on the embedded representation of the input sequence, we employ a feedforward neuron network to determine the class of the input sequence. Moreover, regularization and generalization methods are employed to minimize generalization errors. The detailed procedure for piRNA detection using the LSTM4piRNA method is presented in the following subsections.

4.1. Encode Data and Generalization

To train and evaluate piRNA detection, we download piRNAs from the piRBase v1.0 [9] and v3.0 databases [20] for species including Homo sapiens, Caenorhabditis elegans, Rattus norvegicus, and Mus musculus. The piRNAs with lengths ranging from 18 to 40 are randomly drawn from piRBase as positive samples. Note that, in the piRBase database, the majority of piRNAs fit within the 18–40 nucleotide range, with only a few exceptions outside this range, and the proportion is exceptionally low. The maximum sample size is set to 100,000 for the piRbase v1.0 dataset and 1,000,000 for the expanded piRbase v3.0 dataset. Table 3 summarizes the total number and average length of the piRNAs for each species in the constructed benchmark. To create the negative samples, ncRNAs are first taken from the Rfam 14.6 database [23,24]. For each sequence in the positive samples, the sub-sequence with the same length is randomly drawn from the Rfam database and shuffled to create the negative control sample. Based on the aforementioned strategy for generating the benchmarking dataset, each positive sample has a matching negative control sample so that we have the exact same number of positive and negative samples. Next, we encode each base of the sequence into a 4-bit one-hot vector according to Table 4. For example, the RNA sequence {ACCG} is encoded into the vectors {[1,0,0,0], [0,0,1,0], [0,0,1,0], [0,0,0,1]}. Following the one-hot encoding, since 4 bits are required to represent a single nucleotide base, the input sequence of length L is converted to a sequence of vectors with a total size of L × 4 . These one-hot vectors are then sequentially fed into the LSTM network. During the training phase, we introduce data generalization by randomly reordering the negative samples with a generalizing probability. This data generalization allows the model to adapt effectively to new data, thereby enabling the LSTM network to learn more relevant features and reduce potential generalization errors.

4.2. Network Architecture and Regularization

The LSTM is an advanced type of recurrent neural network that can learn the dependencies of an entire input sequence by sharing weights and updating control states over time. As illustrated in Figure 3a, the LSTM neuron cell is mainly composed of the cell state and hidden state, which are controlled by three gates using the sigmoid function to memorize important information or discard less relevant information from prior data. Initially, the input gate of the LSTM network takes two input signals, including the previous hidden state H t 1 and the current input X t . It then determines which information should be updated to the cell state C t based on the output of the sigmoid function σ · and hyperbolic tangent function tanh · . The update rule for the input gate is given by
T a ( H t 1 , X t ) = W · [ H t 1 , X t ] + B
i t = σ T a ( H t 1 , X t )
C ˜ = tanh T a ( H t 1 , X t ) ,
where T a represents an affine transform function with trainable weight W and bias B parameters. The operator · denotes vector concatenation. Furthermore, i t is the output of the sigmoid function, while C ˜ is the output of the hyperbolic tangent function.
Subsequently, the forget gate decides what information should be discarded from the cell state, and the output of the forget gate is given by:
f t = σ T a ( H t 1 , X t ) .
As a result, the cell state C t for long-term memory can selectively retain part of the activated data using both the input gate and the forget gate. Specifically, the LSTM updates the cell state by combining the outputs of the input gate and forget gate as shown in the following equation:
C t = f t C t 1 + i t C t ˜ .
The hidden state H t for short-term memory can then access the activated cell data through the output gate. The output gate selectively passes the information to the next cell based on the following equation:
H t = σ T a ( H t 1 , X t ) tanh C t .
The data stored in the hidden state are taken as the neuron output and are also fed back to the input data across time steps.
LSTM4piRNA is primarily based on the LSTM algorithm, and its learning network architecture is illustrated in Figure 3b. Considering that piRNAs are relatively short sequences, the inclusion of deeper layers and hidden states does not significantly enhance performance but increases the risk of overfitting. To avoid the overfitting that often accompanies increased model complexity and ensure reliable generalization performance, we adopt a 3-layer LSTM with 32 hidden states. The streamlined model not only reduces computational demands but also enhances the ability to process large-scale data effectively. The initial step in LSTM4piRNA involves encoding the input sequence into one-hot vectors and generalizing the training sequences. Following this, the three-layer LSTM network processes the one-hot vectors sequentially to automatically learn and identify the features. The output from the last hidden state is subjected to batch normalization to reduce the covariate shift and provide additional regularization [25]. The encoded informative embedding is then directed into a single-layer feedforward neuron network of size 32 × 2 for piRNA prediction. In the final layer, the feedforward neural network outputs a 2-bit one-hot vector corresponding to the piRNA and non-piRNA predictions. During the training phase, we set the batch size to 128 and allow for a maximum of 300 epochs. We employ the Adam optimizer with a learning rate of 0.001 and use the cross-entropy loss function [26]. To circumvent overfitting during training, we apply dropout regularization to both the LSTM and feedforward networks, randomly disabling node connections with a specified probability. The dropout regularization enables the neurons to identify more robust features independently, thus avoiding over-reliance on other nodes and overfitting of the training data [27,28]. We empirically optimize the dropout rate and generalization probability, as depicted in Figure 1 and Figure 2. Additionally, the hyperparameters are set empirically based on our experiments, with the optimized values recommended for general use. However, users can freely adjust these hyperparameters to align with their preferences and the statistical properties of their training datasets.

Author Contributions

Conceptualization, C.-C.C., Y.-M.C. and H.J.; methodology, C.-C.C., Y.-M.C. and H.J.; software, C.-C.C.; validation, C.-C.C., Y.-M.C. and H.J.; formal analysis, C.-C.C., Y.-M.C. and H.J.; investigation, C.-C.C., Y.-M.C. and H.J.; resources, C.-C.C. and H.J.; data curation, C.-C.C. and Y.-M.C.; writing—original draft preparation, C.-C.C. and Y.-M.C.; writing—review and editing, C.-C.C., Y.-M.C. and H.J.; visualization, C.-C.C., Y.-M.C. and H.J.; supervision, C.-C.C.; project administration, C.-C.C.; funding acquisition, C.-C.C. and H.J. All authors have read and agreed to the published version of the manuscript.

Funding

This work has been supported by MOST of Taiwan under project 110-2222-E-415-001-MY2. This work was supported by the National Research Foundation of Korea (NRF) grant funded by the Korean government (MSIT) (No. RS-2023-00222406).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The web application and source program for LSTM4piRNA are freely accessible at https://lstm4pirna.ee.ncyu.edu.tw (accessed on 19 September 2023).

Conflicts of Interest

Author Yi-Ming Chan was employed by the company MindtronicAI. The remaining authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as potential conflicts of interest.

Abbreviations

The following abbreviations are used in this manuscript:
LSTMLong Short-Term Memory
piRNAPiwi-interacting RNAs
PPVPositive Predictive Value
SENSensitivity
ACCAccuracy

References

  1. Aravin, A.A.; Hannon, G.J.; Brennecke, J. The Piwi-piRNA pathway provides an adaptive defense in the transposon arms race. Science 2007, 318, 761–764. [Google Scholar] [CrossRef] [PubMed]
  2. Weick, E.M.; Miska, E.A. piRNAs: From biogenesis to function. Development 2014, 141, 3458–3471. [Google Scholar] [CrossRef] [PubMed]
  3. Juliano, C.; Wang, J.; Lin, H. Uniting germline and stem cells: The function of Piwi proteins and the piRNA pathway in diverse organisms. Annu. Rev. Genet. 2011, 45, 447–469. [Google Scholar] [CrossRef]
  4. Mei, Y.; Clark, D.; Mao, L. Novel dimensions of piRNAs in cancer. Cancer Lett. 2013, 336, 46–52. [Google Scholar] [CrossRef] [PubMed]
  5. Ng, K.W.; Anderson, C.; Marshall, E.A.; Minatel, B.C.; Enfield, K.S.; Saprunoff, H.L.; Lam, W.L.; Martinez, V.D. Piwi-interacting RNAs in cancer: Emerging functions and clinical utility. Mol. Cancer 2016, 15, 5. [Google Scholar] [CrossRef]
  6. Shi, S.; Yang, Z.Z.; Liu, S.; Yang, F.; Lin, H. PIWIL1 promotes gastric cancer via a piRNA-independent mechanism. Proc. Natl. Acad. Sci. USA 2020, 117, 22390–22401. [Google Scholar] [CrossRef]
  7. Kolliopoulou, A.; Santos, D.; Taning, C.N.T.; Wynant, N.; Vanden Broeck, J.; Smagghe, G.; Swevers, L. PIWI pathway against viruses in insects. Wiley Interdiscip. Rev. RNA 2019, 10, e1555. [Google Scholar] [CrossRef]
  8. Lakshmi, S.S.; Agrawal, S. piRNABank: A web resource on classified and clustered Piwi-interacting RNAs. Nucleic Acids Res. 2008, 36, D173–D177. [Google Scholar] [CrossRef]
  9. Zhang, P.; Si, X.; Skogerbø, G.; Wang, J.; Cui, D.; Li, Y.; Sun, X.; Liu, L.; Sun, B.; Chen, R.; et al. piRBase: A web resource assisting piRNA functional study. Database 2014, 2014, bau110. [Google Scholar] [CrossRef]
  10. Seto, A.G.; Kingston, R.E.; Lau, N.C. The coming of age for Piwi proteins. Mol. Cell 2007, 26, 603–609. [Google Scholar] [CrossRef]
  11. Betel, D.; Sheridan, R.; Marks, D.S.; Sander, C. Computational analysis of mouse piRNA sequence and biogenesis. PLoS Comput. Biol. 2007, 3, e222. [Google Scholar] [CrossRef]
  12. Zhang, Y.; Wang, X.; Kang, L. A k-mer scheme to predict piRNAs and characterize locust piRNAs. Bioinformatics 2011, 27, 771–776. [Google Scholar] [CrossRef]
  13. Chen, C.C.; Qian, X.; Yoon, B.J. Effective computational detection of piRNAs using n-gram models and support vector machine. BMC Bioinform. 2017, 18, 103–109. [Google Scholar] [CrossRef] [PubMed]
  14. Wang, K.; Hoeksema, J.; Liang, C. piRNN: Deep learning algorithm for piRNA prediction. PeerJ 2018, 6, e5429. [Google Scholar] [CrossRef] [PubMed]
  15. Li, D.; Luo, L.; Zhang, W.; Liu, F.; Luo, F. A genetic algorithm-based weighted ensemble method for predicting transposon-derived piRNAs. BMC Bioinform. 2016, 17, 329. [Google Scholar] [CrossRef] [PubMed]
  16. Rosenkranz, D.; Zischler, H. proTRAC-a software for probabilistic piRNA cluster detection, visualization and analysis. BMC Bioinform. 2012, 13, 5. [Google Scholar] [CrossRef]
  17. Jung, I.; Park, J.C.; Kim, S. piClust: A density based piRNA clustering algorithm. Comput. Biol. Chem. 2014, 50, 60–67. [Google Scholar] [CrossRef]
  18. Brayet, J.; Zehraoui, F.; Jeanson-Leh, L.; Israeli, D.; Tahi, F. Towards a piRNA prediction using multiple kernel fusion and support vector machine. Bioinformatics 2014, 30, i364–i370. [Google Scholar] [CrossRef]
  19. Boucheham, A.; Sommard, V.; Zehraoui, F.; Boualem, A.; Batouche, M.; Bendahmane, A.; Israeli, D.; Tahi, F. IpiRId: Integrative approach for piRNA prediction using genomic and epigenomic data. PloS ONE 2017, 12, e0179787. [Google Scholar] [CrossRef]
  20. Wang, J.; Shi, Y.; Zhou, H.; Zhang, P.; Song, T.; Ying, Z.; Yu, H.; Li, Y.; Zhao, Y.; Zeng, X.; et al. piRBase: Integrating piRNA annotation in all aspects. Nucleic Acids Res. 2022, 50, D265–D272. [Google Scholar] [CrossRef]
  21. Hochreiter, S.; Schmidhuber, J. Long short-term memory. Neural Comput. 1997, 9, 1735–1780. [Google Scholar] [CrossRef] [PubMed]
  22. Gers, F.A.; Schmidhuber, E. LSTM recurrent networks learn simple context-free and context-sensitive languages. IEEE Trans. Neural Netw. 2001, 12, 1333–1340. [Google Scholar] [CrossRef] [PubMed]
  23. Griffiths-Jones, S.; Bateman, A.; Marshall, M.; Khanna, A.; Eddy, S.R. Rfam: An RNA family database. Nucleic Acids Res. 2003, 31, 439–441. [Google Scholar] [CrossRef] [PubMed]
  24. Kalvari, I.; Nawrocki, E.P.; Ontiveros-Palacios, N.; Argasinska, J.; Lamkiewicz, K.; Marz, M.; Griffiths-Jones, S.; Toffano-Nioche, C.; Gautheret, D.; Weinberg, Z.; et al. Rfam 14: Expanded coverage of metagenomic, viral and microRNA families. Nucleic Acids Res. 2021, 49, D192–D200. [Google Scholar] [CrossRef]
  25. Ioffe, S.; Szegedy, C. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In Proceedings of the International Conference on Machine Learning, PMLR, Lille, France, 6–11 July 2015; pp. 448–456. [Google Scholar]
  26. Kingma, D.P.; Ba, J. Adam: A method for stochastic optimization. arXiv 2014, arXiv:1412.6980. [Google Scholar]
  27. Srivastava, N.; Hinton, G.; Krizhevsky, A.; Sutskever, I.; Salakhutdinov, R. Dropout: A simple way to prevent neural networks from overfitting. J. Mach. Learn. Res. 2014, 15, 1929–1958. [Google Scholar]
  28. Baldi, P.; Sadowski, P. The dropout learning algorithm. Artif. Intell. 2014, 210, 78–122. [Google Scholar] [CrossRef]
Figure 1. The evaluation of detection performance on piRBase datasets with regard to regularization. Bars in different colors correspond to the test for different species. The ACC, SEN, PPV, and F1-Score are illustrated for comparison.
Figure 1. The evaluation of detection performance on piRBase datasets with regard to regularization. Bars in different colors correspond to the test for different species. The ACC, SEN, PPV, and F1-Score are illustrated for comparison.
Ijms 24 15681 g001
Figure 2. The evaluation of detection performance on piRBase datasets with regard to generalization. Bars in different colors correspond to the test for different species. The ACC, SEN, PPV, and F1-Score are illustrated for comparison.
Figure 2. The evaluation of detection performance on piRBase datasets with regard to generalization. Bars in different colors correspond to the test for different species. The ACC, SEN, PPV, and F1-Score are illustrated for comparison.
Ijms 24 15681 g002
Figure 3. The LSTM4piRNA architecture. (a) The LSTM neuron consists of cell state C t and hidden state H t , which are controlled by three gates. The σ gate is implemented using the logistic sigmoid function, while the tanh activation is the hyperbolic tangent function. Both addition and multiplication operations are performed point–wise. (b) The learning network schematic. The learning network includes regularization, three–layer LSTM neuron networks, batch normalization, and the feedforward neuron network.
Figure 3. The LSTM4piRNA architecture. (a) The LSTM neuron consists of cell state C t and hidden state H t , which are controlled by three gates. The σ gate is implemented using the logistic sigmoid function, while the tanh activation is the hyperbolic tangent function. Both addition and multiplication operations are performed point–wise. (b) The learning network schematic. The learning network includes regularization, three–layer LSTM neuron networks, batch normalization, and the feedforward neuron network.
Ijms 24 15681 g003
Table 1. Performance evaluation on the piRBase v1.0 dataset. Note that we highlight the best performer using boldface font.
Table 1. Performance evaluation on the piRBase v1.0 dataset. Note that we highlight the best performer using boldface font.
MethodH. sapiens
ACCSENPPVF1-Score (%)Log 10 (Time)
LSTM4piRNA88.6689.8687.7588.791.05
piRNAPredictor77.7981.3675.9478.561.76
GAWE80.3582.1379.3180.703.66
piRNN86.8887.8286.2087.002.24
R. norvegicus
LSTM4piRNA88.5088.8888.2288.551.12
piRNAPredictor74.9183.1571.3976.821.99
GAWE87.0789.8585.1387.423.98
piRNN87.2788.4386.4387.422.52
M. musculus
LSTM4piRNA83.3484.0782.8683.461.28
piRNAPredictor73.1978.0271.1574.422.23
GAWE80.0080.5079.7080.104.12
piRNN81.5180.4482.2081.312.70
C. elegans
LSTM4piRNA89.2593.8085.9889.721.12
piRNAPredictor78.1079.0577.5878.311.66
GAWE84.3088.4781.6584.933.18
piRNN87.6991.4285.0788.132.11
Table 2. Performance evaluation on the piRBase v3.0 dataset. Note that we highlight the best performer using boldface font.
Table 2. Performance evaluation on the piRBase v3.0 dataset. Note that we highlight the best performer using boldface font.
MethodH. sapiens
ACCSENPPVF1-Score (%)Log 10 (Time)
LSTM4piRNA83.8182.8184.4983.641.87
piRNAPredictor70.5973.0969.6171.313.22
R. norvegicus
LSTM4piRNA85.2585.5785.0385.301.55
piRNAPredictor72.5370.3073.5871.903.18
M. musculus
LSTM4piRNA83.3282.9083.6183.251.79
piRNAPredictor71.7769.0573.0270.983.21
C. elegans
LSTM4piRNA88.8192.3286.2789.191.10
piRNAPredictor78.2579.3977.6278.501.62
GAWE82.2085.0380.4782.693.20
piRNN87.4592.1184.2688.012.14
Note that only LSTM4piRNA and piRNAPredictor are capable of analyzing datasets for H. sapiens, R. norvegicus, and M. musculus species.
Table 3. Statistical summary of the benchmark sequences for each species.
Table 3. Statistical summary of the benchmark sequences for each species.
piRBase v1.0Data SizeAverage Length
H. sapiens32,25228.8
R. norvegicus62,13028.1
M. musculus100,00026.9
C. elegans28,21921.0
piRBase v3.0Data SizeAverage Length
H. sapiens1,000,00028.5
R. norvegicus1,000,00028.0
M. musculus1,000,00027.2
C. elegans30,03621.0
Table 4. Code words for one-hot encoding.
Table 4. Code words for one-hot encoding.
Nucleotide BaseOne-Hot Vector
A[1,0,0,0]
U[0,1,0,0]
C[0,0,1,0]
G[0,0,0,1]
N[0,0,0,0]
The character “N” represents an uncertain base.
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Chen, C.-C.; Chan, Y.-M.; Jeong, H. LSTM4piRNA: Efficient piRNA Detection in Large-Scale Genome Databases Using a Deep Learning-Based LSTM Network. Int. J. Mol. Sci. 2023, 24, 15681. https://doi.org/10.3390/ijms242115681

AMA Style

Chen C-C, Chan Y-M, Jeong H. LSTM4piRNA: Efficient piRNA Detection in Large-Scale Genome Databases Using a Deep Learning-Based LSTM Network. International Journal of Molecular Sciences. 2023; 24(21):15681. https://doi.org/10.3390/ijms242115681

Chicago/Turabian Style

Chen, Chun-Chi, Yi-Ming Chan, and Hyundoo Jeong. 2023. "LSTM4piRNA: Efficient piRNA Detection in Large-Scale Genome Databases Using a Deep Learning-Based LSTM Network" International Journal of Molecular Sciences 24, no. 21: 15681. https://doi.org/10.3390/ijms242115681

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop