gtrack.create_sparse | R Documentation |
Creates a 'Sparse' track from intervals and values.
gtrack.create_sparse(
track = NULL,
description = NULL,
intervals = NULL,
values = NULL
)
track |
track name |
description |
a character string description |
intervals |
a set of one-dimensional intervals |
values |
an array of numeric values - one for each interval |
This function creates a new 'Sparse' track with values at given intervals. 'description' is added as a track attribute.
None.
gtrack.create
, gtrack.2d.create
,
gtrack.smooth
, gtrack.modify
,
gtrack.rm
, gtrack.info
,
gdir.create
gdb.init_examples()
intervs <- gintervals.load("annotations")
gtrack.create_sparse(
"test_sparse", "Test track", intervs,
1:dim(intervs)[1]
)
gextract("test_sparse", .misha$ALLGENOME)
gtrack.rm("test_sparse", force = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.