Learn R Programming

GenomicTools (version 0.2.9.7)

annotTrack: Example Annotation Track

Description

An example for a typical annotation track.

Usage

data(annotTrack)

Arguments

Format

A data table with 1000 rows, each representing one annotation with 11 columns as provided from standard gtf format from Ensembl.

Details

This is an example homo sapiens annotation track as it was downloaded from the Ensembl ftp download page. In total there are 1000 annotations from the human genome in release 85.

Examples

Run this code
# NOT RUN {
# The object was created from the downloaded Ensembl file as follows
# }
# NOT RUN {
  ensGTF <- importGTF(file="Homo_sapiens.GRCh38.85.gtf.gz")
  annotTrack <- ensGTF[1:1000,]
  save(annotTrack,file="annotTrack.rda")
# }
# NOT RUN {
data(annotTrack)
annotTrack
# }

Run the code above in your browser using DataLab