artemisColors {genoPlotR} | R Documentation |
Artemis Colors
Description
Returns a data frame with the standard artemis colors.
Usage
artemisColors()
Value
A data.frame
with the following columns: n
, names
,
colors
, r
, g
and g
. The 3 first columns
give the Artemis color number, its name, and its equivalent in R. The
3 last give the r, g and b values.
Author(s)
Lionel Guy
References
Artemis website: http://www.sanger.ac.uk/resources/software/artemis/
Examples
artCol <- artemisColors()
plot(rep(1, nrow(artCol)), artCol$n, xlim=c(1, 2), type="n")
text(rep(1, nrow(artCol)), artCol$n, labels=artCol$n, col=artCol$colors)
text(rep(1, nrow(artCol)), artCol$n, labels=artCol$names, col=artCol$colors,
pos=4, offset=1)
[Package genoPlotR version 0.8.11 Index]