getChromLoc: Get Chromasome Location

Description Usage Arguments Value See Also Examples

Description

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

Usage

1
2
3
## S4 method for signature 'FootprintFinder'
getChromLoc(obj, name, biotype = "protein_coding",
  moleculetype = "gene")

Arguments

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")

Value

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

See Also

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

Examples

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")

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