Package 'GB5mcPred'

Title: Gradient Boosting Algorithm for Predicting Methylation States
Description: DNA methylation of 5-methylcytosine (5mC) is the result of a multi-step, enzyme-dependent process. Predicting these sites in-vitro is laborious, time consuming as well as costly. This ' Gb5mC-Pred ' package is an in-silico pipeline for predicting DNA sequences containing the 5mC sites. It uses a machine learning approach which uses Stochastic Gradient Boosting approach for prediction of the sequences with 5mC sites. This package has been developed by using the concept of Navarez and Roxas (2022) <doi:10.1109/TCBB.2021.3082184>.
Authors: Dipro Sinha [aut, cre], Sunil Archak [aut], Dwijesh Chandra Mishra [aut], Tanwy Dasmandal [aut], Md Yeasin [aut]
Maintainer: Dipro Sinha <[email protected]>
License: GPL-3
Version: 0.1.0
Built: 2025-02-01 06:16:11 UTC
Source: https://github.com/cran/GB5mcPred

Help Index


Pred5mc

Description

Prediction of sequences with 5mc sites.

Usage

Pred5mc(Fastafile)

Arguments

Fastafile

Sequence file (.fasta format)

Value

MethStatus: Sequences with their methylation state (methylated or non-methylated)

References

Chen, W., Lv, H., Nie, F., & Lin, H. (2019). i6mA-Pred: identifying DNA N6-methyladenine sites in the rice genome. Bioinformatics, 35(16), 2796-2800.

Examples

library(GB5mcPred)
data<-system.file("exdata/test.fasta", package = "GB5mcPred")
pred<-Pred5mc(Fastafile=data)