makeGeneModel: Creates an object of class GeneModel

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/GenomeGraphs-classes.R

Description

Creates an object of class GeneModel representing a custom annotation or gene model

Usage

1
makeGeneModel(start, end, chromosome, dp = NULL)

Arguments

start

Vector of start positions for exons

end

Vector of end positions for exons

chromosome

chromosome name

dp

Display parametes represented as an object of class DisplayPars

Value

Object of class GeneModel

Author(s)

Steffen Durinck and Jim Bullard

References

~put references to the literature/web site here ~

See Also

DisplayPars

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (start, end, chromosome, dp = NULL) 
{
    if (is.null(dp)) 
        dp <- getClass("GeneModel")@prototype@dp
    new("GeneModel", exonStart = start, exonEnd = end, dp = dp)
  }

GenomeGraphs documentation built on Oct. 31, 2019, 4:34 a.m.