Description Usage Arguments Value See Also Examples
Using the motifsgenes table inside the genome database specified by the FootprintFinder object, return a table mapping each motif to transcription factors
1 2 | ## S4 method for signature 'FootprintFinder'
mapMotifsToTFsMergeIntoTable(obj, tbl)
|
obj |
An object of class FootprintFinder |
tbl |
A dataframe of footprints, generally obtained using |
A data frame containing the motifs from the supplied footprints table and the transcription factors they map to
Other FootprintFinder methods: FootprintFinder-class
,
closeDatabaseConnections,FootprintFinder-method
,
getChromLoc,FootprintFinder-method
,
getFootprintsForGene,FootprintFinder-method
,
getFootprintsInRegion,FootprintFinder-method
,
getGenePromoterRegion,FootprintFinder-method
,
getGtfGeneBioTypes,FootprintFinder-method
,
getGtfMoleculeTypes,FootprintFinder-method
,
getPromoterRegionsAllGenes,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 <- getFootprintsForGene(fp, gene = "MEF2C")
tfs <- mapMotifsToTFsMergeIntoTable(fp, footprints)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.