Send R code to LSF clusters.
Basic
| 软件包 | 链接 |
|---|---|
| Language | R |
| CRAN | https://CRAN.R-project.org/package=bsub |
| GitHub | https://github.com/jokergoo/bsub |
| Documentation | https://jokergoo.github.io/bsub/ |
Example
library(bsub)
# R code
bsub_chunk(name = "example", memory = 10, hours = 10, cores = 4,
{
fit = NMF::nmf(...)
saveRDS(fit, file = "/path/of/fit.rds")
})