Description Usage Arguments Value See Also Examples
Using the regions and hits tables inside the project database specified by the FootprintFinder object, return the location, chromasome, starting position, and ending positions of all footprints for the specified region.
1 2 | ## S4 method for signature 'FootprintFinder'
getFootprintsInRegion(obj, chromosome, start, end)
|
obj |
An object of class FootprintFinder |
chromosome |
The name of the chromosome of interest |
start |
An integer denoting the start of the desired region |
end |
An integer denoting the end of the desired region |
A dataframe containing all footprints for the specified region
Other FootprintFinder methods: FootprintFinder-class
,
closeDatabaseConnections,FootprintFinder-method
,
getChromLoc,FootprintFinder-method
,
getFootprintsForGene,FootprintFinder-method
,
getGenePromoterRegion,FootprintFinder-method
,
getGtfGeneBioTypes,FootprintFinder-method
,
getGtfMoleculeTypes,FootprintFinder-method
,
getPromoterRegionsAllGenes,FootprintFinder-method
,
mapMotifsToTFsMergeIntoTable,FootprintFinder-method
1 2 3 4 5 6 7 | db.address <- system.file(package="TReNA", "extdata")
genome.db.uri <- paste("sqlite:/",db.address,"genome.sub.db", sep = "/")
project.db.uri <- paste("sqlite:/",db.address,"project.sub.db", sep = "/")
fp <- FootprintFinder(genome.db.uri, project.db.uri)
footprints <- getFootprintsInRegion(fp, chromosome = "chr5",
start = 88903305, end = 88903319 )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.