| scanMiRserver {scanMiRApp} | R Documentation |
Server function for the scanMiR shiny app. Most users are expected to use
scanMiRApp instead.
scanMiRserver( annotations = list(), modlists = NULL, maxCacheSize = 10 * 10^6, BP = SerialParam() )
annotations |
A named list of |
modlists |
A named list of 'KdModelList' objects. If omitted, will fetch it from the annotation objects. |
maxCacheSize |
Maximum cache size in bytes. |
BP |
BPPARAM for multithreading |
A shiny server function
# we'd normally fetch a real annotation:
# anno <- ScanMiRAnno("Rnor_6")
# here we'll use a fake one:
anno <- ScanMiRAnno("fake")
srv <- scanMiRserver(list(fake=anno))