miRNATargetRegionsBiomart: Creates a track of miRNA target regions from ENSEMBL

Description Usage Arguments Value Author(s) References Examples

Description

Creates a track of miRNA target regions from ENSEMBL using the Gviz bioconductor package.

Usage

1
miRNATargetRegionsBiomart(gen, chr, start, end, showId=FALSE, datasetEnsembl = NULL)

Arguments

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.

Value

An AnnotationTrack object of Gviz

Author(s)

Tiphaine Martin

Tom Hardiman

References

http://bioconductor.org/packages/release/bioc/html/Gviz.html

Got to ENSEMBLregulation binding motif biomart

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
library("Gviz")
gen <- "hg19"
chr <- "chr1"
start <- 1000000
end <- 20000000


if(interactive()){
 miRNATargetRegionsBiomartTrack<-miRNATargetRegionsBiomart(gen,chr,start,end,featureDisplay)
  plotTracks(miRNATargetRegionsBiomartTrack, from = start, to = end)
} else {
  data(miRNATargetRegionsBiomartTrack)
  plotTracks(miRNATargetRegionsBiomartTrack, from = start, to = end)
}

TiphaineCMartin/coMET_original documentation built on May 9, 2019, 4:49 p.m.