Using the gtf table in the genome database contained in a FootprintFinder object, get the list of different types of biological units (biotypes) contained in the table.

# S4 method for FootprintFinder
getGtfGeneBioTypes(obj)

Arguments

obj

An object of class FootprintFinder

Value

A sorted list of the types of biological units contained in the gtf table of the genome database.

See also

Examples

db.address <- system.file(package="trena", "extdata") genome.db.uri <- paste("sqlite:/",db.address,"mef2c.neighborhood.hg38.gtfAnnotation.db", sep = "/") project.db.uri <- paste("sqlite:/",db.address,"mef2c.neigborhood.hg38.footprints.db", sep = "/") fp <- FootprintFinder(genome.db.uri, project.db.uri) biotypes <- getGtfGeneBioTypes(fp)