makeGenomeAxis: Creates an object of class GenomeAxis

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

View source: R/GenomeGraphs-classes.R

Description

Creates an object of class GenomeAxis, representing a genome coordinate axis.

Usage

1
makeGenomeAxis(add53 = FALSE, add35 = FALSE, littleTicks = FALSE, dp = NULL)

Arguments

add53

Add a 5 to 3 prime label

add35

Add a 3 to 5 prime label

littleTicks

Add smaller ticks between larger ticks

dp

Set the display parameters see DisplayPars

Value

Object of class GenomeAxis

Author(s)

Jim Bullard and Steffen Durinck

References

~put references to the literature/web site here ~

See Also

DisplayPars,gdPlot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- 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 (add53 = FALSE, add35 = FALSE, littleTicks = FALSE, 
    dp = NULL) 
{
    if (is.null(dp)) 
        dp <- getClass("GenomeAxis")@prototype@dp
    new("GenomeAxis", add53 = add53, add35 = add35, dp = dp)
  }

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