gtfToBed: Extract the Chromosomal Information Required in bed Format...

View source: R/gtfToBed.R

gtfToBedR Documentation

Extract the Chromosomal Information Required in bed Format from an imported gtf table.

Description

This function creates a matrix of gene annotations in bed format, based on the information given in an importet gtf table.

Usage

  gtfToBed(gtf, correctBases=TRUE)

Arguments

gtf

An imported gtf table.

correctBases

Logical subtract 1 from bases

Details

After a gtf file was imported with importGTF this function transforms it into a data.frame with bed formatting. The option correctBases adjusts the coordinates in the bed object according to the bed standard. The base counting in gtf starts with 1, wheras in bed-files they start with 0.

Value

A data.frame in bed format having the four columns Chr, Start, Stop and Gene

Author(s)

Daniel Fischer

Examples

## Not run: 
annotTrack <- read.table(file="Homo_sapiens.GRCh37.70.gtf",sep="\t")
annotBed <- gtfToBed(annotTrack)

## End(Not run)

fischuu/GenomicTools documentation built on April 30, 2023, 7:53 p.m.