Description Usage Arguments Objects from the Class Slots Basic usage Author(s) See Also Examples
Basic functionality for miRNA host gene packages. Such database
packages can be created using the
makeMirhostgenesPackage
function (see the
corresponding help page for more information).
For methods and examples to retrieve host gene definitions and similar
from the database, refer to the hostgenes
man page.
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 28 29 30 31 32 33 34 | ## S4 method for signature 'MirhostDb'
dbconn(x)
## S4 method for signature 'MirhostDb'
listArrays(x, ...)
## S4 method for signature 'MirhostDb'
listColumns(x, table, skip.keys=TRUE, ...)
## S4 method for signature 'MirhostDb'
listTables(x, ...)
## S4 method for signature 'MirhostDb'
listDatabases(x, ...)
## S4 method for signature 'MirhostDb'
listGenebiotypes(x, ...)
## S4 method for signature 'MirhostDb'
listTxbiotypes(x, ...)
## S4 method for signature 'MirhostDb'
metadata(x)
## S4 method for signature 'MirhostDb'
mirbaseVersion(x)
MirhostDb(x)
## S4 method for signature 'MirhostDb'
organism(object)
## S4 method for signature 'MirhostDb'
version(object, what="ensembl", ...)
|
... |
Additional arguments. For not used for any methods. |
object |
For |
skip.keys |
For |
table |
For |
what |
For |
x |
For |
A connection to the respective annotation database is created upon
loading of an annotation package created with the
makeMirhostgenesPackage
function.
See examples below for basic usage.
Object of class "DBIConnection"
: the
connection to the database.
named list of database table columns with the names being the database table names. The order in which the tables are returned are the by their degree, i.e. the number of other tables they can be connected to (joined with).
Logical specifying whether a database table with pre-miRNA sequences in available.
Logical specifying whether a database table with miRNA family definitions is available.
Logical specifying whether a database table with microarray features (probe sets) is available.
Logical specifying whether pre-miRNA confidence information, as provided by the miRBase database, is available.
Logical specifying whether the read counts information for pre-miRNAs as provided by the miRBase database is available.
Logical specifying whether mature miRNA confidence information, as provided by the miRBase database, is available.
Logical specifying whether the read counts information for mature miRNAs as provided by the miRBase database is available.
(in alphabetical order)
Returns the SQLiteConnection
connection to the internal database.
Returns a character vector with the names of the microarrays for which probe set to host transcript mappings are available.
Returns a character vector of all columns stored in a database,
or in a single database table if table
was specified.
Returns a character vector of all databases from which
gene/transcript models for host gene predictions were retrieved.
In most instances the databases "core"
(Ensembl core),
"otherfeatures"
(Ensembl otherfeatures containing CCDs and
RefSeq genes) and "vega"
(Ensembl Vega database with
curated genes) are queried.
Returns a character vector of all available gene biotypes from the
database. These values can be used in a
GenebiotypeFilter
to filter results queried from the
database.
Returns a named list of database table columns (names of the list being the database table names).
Returns all available transcript biotypes from the database. These
values can be used in a TxbiotypeFilter
to filter
results queried from the database.
Retrieves the metadata of the database. Returns a
data.frame
with the key-value pairs.
Returns the version of the miRBase database the MirhostDb
database bases on as a character string.
The constructor function. Returns a MirhostDb
instance.
Returns the organism (e.g. "Homo sapiens"
).
Displays some informations from the database.
Returns the version of the resource (either Ensembl or miRBase) that was used to build the database.
Johannes Rainer
hostgenes
, premirnas
, makeMirhostgenesPackage
, PositionFilter
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | library(MirhostDb.Hsapiens.v75.v20)
## make a shortcut...
mhg <- MirhostDb.Hsapiens.v75.v20
## show some information of the database
mhg
## the version of the Ensembl database
ensemblVersion(mhg)
## the version of the mirbase database
mirbaseVersion(mhg)
## list all tables along with their columns
listTables(mhg)
## list all columns stored in the database for database table host_tx
listColumns(mhg, table="host_tx")
## list all databases on which gene/transcript models host genes were
## defined
listDatabases(mhg)
## for what organism is this package
organism(mhg)
## list all available gene biotypes
listGenebiotypes(mhg)
## list all available transcript biotypes
listTxbiotypes(mhg)
## list all microarrays for which probe sets have been indentified
## targeting the host genes/transcripts
listArrays(mhg)
## get an overview of the full metadata
metadata(mhg)
## get some information about the genome
genome(mhg)
## or the chromosomes on which the miRNA precursors (pre-miRNAs)
## where defined
seqinfo(mhg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.