pkg <- "rRDP" source("https://raw.githubusercontent.com/mhahsler/pkg_helpers/main/pkg_helpers.R") pkg_title(pkg, CRAN = FALSE, Bioc = TRUE)
This package installs and interfaces the naive Bayesian classifier for 16S rRNA sequences developed by the Ribosomal Database Project (RDP). With this package the classifier trained with the standard training set can be used or a custom classifier can be trained.
Other R interfaces for bioinformatics are also available:
if (!require("BiocManager", quietly = TRUE)) { install.packages("BiocManager") } BiocManager::install("rRDP") BiocManager::install("rRDPData")
library(rRDP)
Load a few sequences and classify the sequences using RDP.
seq <- readRNAStringSet(system.file("examples/RNA_example.fasta", package="rRDP")) seq pred <- predict(rdp(), seq) pred attr(pred, "confidence")
pkg_citation(pkg)
This work was partially supported by grant no. R21HG005912 from the National Human Genome Research Institute.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.