getFootprintsInRegion: Get Footprints in a Region

Description Usage Arguments Value See Also Examples

Description

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.

Usage

1
2
## S4 method for signature 'FootprintFinder'
getFootprintsInRegion(obj, chromosome, start, end)

Arguments

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

Value

A dataframe containing all footprints for the specified region

See Also

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

Examples

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 )

TReNA documentation built on Nov. 17, 2017, 12:35 p.m.