File: retrieveDb.Rd

package info (click to toggle)
r-bioc-tximeta 1.16.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 860 kB
  • sloc: makefile: 2
file content (27 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/retrievers.R
\name{retrieveDb}
\alias{retrieveDb}
\title{Retrieve the TxDb or EnsDb associated with a SummarizedExperiment}
\usage{
retrieveDb(se)
}
\arguments{
\item{se}{the SummarizedExperiment}
}
\value{
a database object
}
\description{
SummarizedExperiment objects returned by \code{\link{tximeta}} have
associated TxDb or EnsDb databases which are cached locally and used
to perform various metadata related tasks. This helper function
retrieves the database itself for the user to perform any additional
operations.
}
\examples{

example(tximeta)
edb <- retrieveDb(se)

}