tracklist | R Documentation |
The tracks of a TnTBoard are stored as a list which can be accessed or modified with these functions.
tracklist(tntboard)
tracklist(tntboard) <- value
tntboard |
A TnTBoard or TnTGenome object |
value |
A list of tracks |
tracklist
returns a list of tracks.
bt <- BlockTrack(GRanges("chr21", IRanges(100, 1200)))
li.tracks <- list(bt, bt)
board <- TnTBoard(li.tracks)
tracklist(board)
## Not run:
show(board)
## End(Not run)
tracklist(board) <- list(bt)
## Not run:
show(board)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.