LoadExcel | R Documentation |
Load Excel Template in a format that fits to seqNdisplayR (see documentation or examples for details)
LoadExcel(xl_fname, load_annotations = FALSE)
xl_fname |
excel template file including path |
load_annotations |
load annotations (paths in ANNOTATIONS sheet in excel template) as GRanges? default=FALSE. |
Load Excel template and parses information to seqNdisplayR session
object. See examples of the format of Excel Templates in
ExamplesSampleSheetsFolder()
for more information.
seqNdisplayRSession object, essentially a named list with slots samples, colors, bigwig_dirs, bigwigs, parameters and annotations and optional arguments to be fed into seqNdisplay function
MS/SLA
#' # EXAMPLE 1:
xl_fname = system.file('extdata', 'seqNdisplayR_sample_sheet_elaborate2.xlsx', package='seqNdisplayR')
session = LoadExcel(xl_fname, load_annotations = TRUE)
plot(session, feature='LMO4')
# EXAMPLE 2:
example_folder = ExamplesSampleSheetsFolder()
xl_fname = paste0(example_folder, 'seqNdisplayR_sample_sheet_elaborate2.xlsx')
session = LoadExcel(xl_fname, load_annotations = TRUE)
plot(session, feature='LMO4')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.