Description Usage Arguments Value See Also Examples
Using the gtf table in the genome database contained in a FootprintFinder object, get the locations of chromasomes with the specified gene name, biological unit type, and molecule type
1 2 3 | ## S4 method for signature 'FootprintFinder'
getChromLoc(obj, name, biotype = "protein_coding",
moleculetype = "gene")
|
obj |
An object of class FootprintFinder |
name |
A gene name or ID |
biotype |
A type of biological unit (default="protein_coding") |
moleculetype |
A type of molecule (default="gene") |
A dataframe containing the results of a database query pertaining to the specified name, biotype, and molecule type. This dataframe contains the following columns: gene_id, gene_name, chr, start, endpos, strand
Other FootprintFinder methods: FootprintFinder-class
,
closeDatabaseConnections,FootprintFinder-method
,
getFootprintsForGene,FootprintFinder-method
,
getFootprintsInRegion,FootprintFinder-method
,
getGenePromoterRegion,FootprintFinder-method
,
getGtfGeneBioTypes,FootprintFinder-method
,
getGtfMoleculeTypes,FootprintFinder-method
,
getPromoterRegionsAllGenes,FootprintFinder-method
,
mapMotifsToTFsMergeIntoTable,FootprintFinder-method
1 2 3 4 5 6 | 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)
chrom.locs <- getChromLoc(fp, name = "MEF2C")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.