The Rcwl package can be a simple and user-friendly way to manage command line tools and build data analysis pipelines in R using Common Workflow Language (CWL).
The package can be installed from Bioconductor (>= 3.9):
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("Rcwl")
# Or from github
BiocManager::install("rworkflow/Rcwl")
library(Rcwl)
inputs <- InputParamList(
InputParam(id = "sth")
)
echo <- cwlProcess(baseCommand = "echo", inputs)
echo$sth <- "Hello World!"
res <- runCWL(echo)
vignette(package = "Rcwl")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.