mirror of
https://github.com/logos-storage/logos-storage-research.git
synced 2026-01-07 16:03:06 +00:00
19 lines
306 B
R
19 lines
306 B
R
|
|
# We do this hack because rsconnect doesn't seem to like us bundling the app
|
||
|
|
# as a package.
|
||
|
|
|
||
|
|
order <- c(
|
||
|
|
'R/partition.R',
|
||
|
|
'R/stats.R',
|
||
|
|
'R/node.R',
|
||
|
|
'R/sim.R'
|
||
|
|
)
|
||
|
|
|
||
|
|
library(R6)
|
||
|
|
library(purrr)
|
||
|
|
library(tidyverse)
|
||
|
|
|
||
|
|
lapply(order, source)
|
||
|
|
|
||
|
|
run <- function() {
|
||
|
|
rmarkdown::run('./block-discovery-sim.Rmd')
|
||
|
|
}
|