makeEpiTxDb | R Documentation |
EpiTxDb
from user supplied annotations as
data.frame
smakeEpiTxDb
is a low-level constructor for creating a
EpiTxDb
object from user supplied annotations.
This functions typically will not be used by regular users.
makeEpiTxDb(
modifications,
reactions = NULL,
specifiers = NULL,
references = NULL,
metadata = NULL,
reassign.ids = FALSE
)
modifications |
A
The first six are mandatory, whereas one of the last two has to be set.
|
reactions |
An optional
(default: |
specifiers |
An optional
(default: |
references |
An optional
(default: |
metadata |
An optional
This dataframe will be returned
by |
reassign.ids |
|
a EpiTxDb
object.
makeEpiTxDbFromGRanges
for
creating a EpiTxDb
object from a
GRanges
object and it's metadata
columns
makeEpiTxDbFromRMBase
for
creating a EpiTxDb
object from RMBase online resources
makeEpiTxDbFromtRNAdb
for
creating a EpiTxDb
object from tRNAdb online resources
shortName
and
ModRNAString
for information on
ModRNAString
objects.
mod <- data.frame("mod_id" = 1L,
"mod_type" = "m1A",
"mod_name" = "m1A_1",
"mod_start" = 1L,
"mod_end" = 1L,
"mod_strand" = "+",
"sn_id" = 1L,
"sn_name" = "test")
rx <- data.frame(mod_id = 1L,
rx_genename = "test",
rx_rank = 1L,
rx_ensembl = "test",
rx_ensembltrans = "test",
rx_entrezid = "test")
spec <- data.frame(mod_id = 1L,
spec_type = "test",
spec_genename = "test",
spec_ensembl = "test",
spec_ensembltrans = "test",
spec_entrezid = "test")
ref <- data.frame(mod_id = 1L,
ref_type = "test",
ref = "test")
etdb <- makeEpiTxDb(mod,rx,spec,ref)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.