Description Usage Arguments Value Author(s) References Examples
Creates a track of miRNA target regions from ENSEMBL using the Gviz bioconductor package.
1 2 3 | miRNATargetRegionsBiomart_ENSEMBL(gen, chr, start, end, showId=FALSE,
datasetEnsembl = "hsapiens_mirna_target_feature",
title="miRNA Target Regions ENSEMBL")
|
gen |
The name of the genome. Currently only handles human data from either the previous version, GRCh37 (also known as hg19) or the current version, GRCh38 (also known as hg38). |
chr |
The chromosome of interest |
start |
The starting position in the region of interest (the smallest value) |
end |
The end position in the region of interest (the largest value) |
showId |
Show the ID of the genetic elements |
datasetEnsembl |
Allows the user to manually set which data set is used if required.Default=hsapiens_mirna_target_feature |
title |
The name of the annotation track |
An AnnotationTrack object of Gviz
Tiphaine Martin
Tom Hardiman
http://bioconductor.org/packages/release/bioc/html/Gviz.html
Got to ENSEMBLregulation binding motif biomart
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | library("Gviz")
gen <- "hg38"
chr <- "chr1"
start <- 1000000
end <- 20000000
if(interactive()){
miRNATargetRegionsBiomartTrack<-miRNATargetRegionsBiomart_ENSEMBL(gen,chr,start,end,
datasetEnsembl = "hsapiens_mirna_target_feature")
plotTracks(miRNATargetRegionsBiomartTrack, from = start, to = end)
} else {
data(miRNATargetRegionsBiomartTrack)
plotTracks(miRNATargetRegionsBiomartTrack, from = start, to = end)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.