Latest documentation: flow-r.github.io/flowr
Flowr framework allows you to design and implement complex pipelines, and deploy them on your institution's computing cluster. This has been built keeping in mind the needs of bioinformatics workflows. However, it is easily extendable to any field where a series of steps (shell commands) are to be executed in a (work)flow.
install.packages("flowr")
)``` {r, eval=FALSE}
install.packages("flowr", repos = "http://cran.rstudio.com")
install.packages("flowr", repos = c(CRAN="http://cran.rstudio.com", DRAT="http://sahilseth.github.io/drat"))
library(flowr) ## load the library setup() ## copy flowr bash script; and create a folder flowr under home.
flowr run x=sleep_pipe platform=local execute=TRUE
wget --no-check-certificate http://raw.githubusercontent.com/sahilseth/flowr/master/inst/pipelines/sleep_pipe.tsv wget --no-check-certificate http://raw.githubusercontent.com/sahilseth/flowr/master/inst/pipelines/sleep_pipe.def
flowr to_flow x=sleep_pipe.tsv def=sleep_pipe.def platform=local execute=TRUE
flowr to_flow x=sleep_pipe.tsv def=sleep_pipe.def platform=lsf execute=TRUE ```
Example pipelines inst/pipelines
This package is under active-development, you may watch for changes using the watch link above.
Please feel free to raise a github issue with questions and comments.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.