makeTxToGene | R Documentation |
Make a TxToGene object
makeTxToGeneFromEnsembl(
organism,
genomeBuild = NULL,
release = NULL,
ignoreVersion = FALSE
)
makeTxToGeneFromEnsDb(object, ignoreVersion = FALSE)
makeTxToGeneFromGff(file, ignoreVersion = FALSE)
organism |
|
genomeBuild |
|
release |
|
ignoreVersion |
|
object |
Object. |
file |
|
TxToGene
.
Remote URLs and compressed files are supported.
Updated 2023-07-31.
## makeTxToGeneFromEnsembl ====
x <- makeTxToGeneFromEnsembl(organism = "Homo sapiens")
print(x)
## makeTxToGeneFromEnsDb ====
## > if (goalie::isInstalled("EnsDb.Hsapiens.v75")) {
## > x <- makeTxToGeneFromEnsDb(object = "EnsDb.Hsapiens.v75")
## > print(x)
## > }
## makeTxToGeneFromGff ====
## > file <- AcidBase::pasteUrl(
## > "ftp.ensembl.org",
## > "pub",
## > "release-102",
## > "gtf",
## > "homo_sapiens",
## > "Homo_sapiens.GRCh38.102.gtf.gz",
## > protocol = "ftp"
## > )
## > x <- makeTxToGeneFromGff(file = file)
## > print(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.