Note: the most recent version of this vignette can be found here.

Note: if you use systemPipeR and systemPipeRdata in published research, please cite:

Backman, T.W.H and Girke, T. (2016). systemPipeR: Workflow and Report Generation Environment. BMC Bioinformatics, 17: 388. 10.1186/s12859-016-1241-0.

1 Introduction

systemPipeRdata is a helper package to generate with a single command workflow templates that are intended to be used by its parent package systemPipeR (H Backman and Girke 2016). The systemPipeR project provides a suite of R/Bioconductor packages for designing, building and running end-to-end analysis workflows on local machines, HPC clusters and cloud systems, while generating at the same time publication quality analysis reports.

To test workflows quickly or design new ones from existing templates, users can generate with a single command workflow instances fully populated with sample data and parameter files required for running a chosen workflow. Pre-configured directory structure of the workflow environment and the sample data used by systemPipeRdata are described here.

systemPipeRdata package provides a demo sample FASTQ files used in the workflow reporting vignettes. The chosen data set SRP010938 obtains 18 paired-end (PE) read sets from Arabidposis thaliana (Howard et al. 2013). To minimize processing time during testing, each FASTQ file has been subsetted to 90,000-100,000 randomly sampled PE reads that map to the first 100,000 nucleotides of each chromosome of the A. thalina genome. The corresponding reference genome sequence (FASTA) and its GFF annotation files (provided in the same download) have been truncated accordingly. This way the entire test sample data set requires less than 200MB disk storage space. A PE read set has been chosen for this test data set for flexibility, because it can be used for testing both types of analysis routines requiring either SE (single-end) reads or PE reads.

2 Getting started

2.1 Installation

The systemPipeRdata package is available at Bioconductor and can be installed from within R as follows:

if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
BiocManager::install("systemPipeRdata")

Also, it is possible to install the development version from Bioconductor.

BiocManager::install("systemPipeRdata", version = "devel", build_vignettes = TRUE,
    dependencies = TRUE)  # Installs Devel version from Bioconductor

2.2 Loading package and documentation

library("systemPipeRdata")  # Loads the package
library(help = "systemPipeRdata")  # Lists package info
vignette("systemPipeRdata")  # Opens vignette

3 Starting with pre-configured workflow templates

Load one of the available workflows into your current working directory. The following does this for the rnaseq workflow template. The name of the resulting workflow directory can be specified under the mydirname argument. The default NULL uses the name of the chosen workflow. An error is issued if a directory of the same name and path exists already.

genWorkenvir(workflow = "systemPipeR/SPrnaseq", mydirname = "rnaseq")
setwd("rnaseq")

On Linux and OS X systems the same can be achieved from the command-line of a terminal with the following commands.

$ Rscript -e "systemPipeRdata::genWorkenvir(workflow='systemPipeR/SPrnaseq', mydirname='rnaseq')"

3.1 Build, run and visualize the workflow template

  • Build workflow from RMarkdown file

This template provides some common steps for a RNAseq workflow. One can add, remove, modify workflow steps by operating on the sal object.

sal <- SPRproject()
sal <- importWF(sal, file_path = "systemPipeVARseq.Rmd", verbose = FALSE)
  • Running workflow

Next, we can run the entire workflow from R with one command:

sal <- runWF(sal)
  • Visualize workflow

systemPipeR workflows instances can be visualized with the plotWF function.

plotWF(sal)
  • Report generation

systemPipeR compiles all the workflow execution logs in one central location, making it easier to check any standard output (stdout) or standard error (stderr) for any command-line tools used on the workflow or the R code stdout.

sal <- renderLogs(sal)

Also, the technical report can be generated using renderReport function.

sal <- renderReport(sal)

4 Workflow templates collection

A collection of workflow templates are available, and it is possible to browse the current availability, as follows:

availableWF(github = TRUE)

This function returns the list of workflow templates available within the package and systemPipeR Organization on GitHub. Each one listed template can be created as described above.

The workflow template choose from Github will be installed as an R package, and also it creates the environment with all the settings and files to run the demo analysis.

genWorkenvir(workflow="systemPipeR/SPrnaseq", mydirname="NULL")
setwd("SPrnaseq")

Besides, it is possible to choose different versions of the workflow template, defined through other branches on the GitHub Repository. By default, the master branch is selected, however, it is possible to define a different branch with the ref argument.

genWorkenvir(workflow="systemPipeR/SPrnaseq", ref = "singleMachine")
setwd("SPrnaseq")

4.1 Download a specific R Markdown file

Also, it is possible to download a specific workflow script for your analysis. The URL can be specified under url argument and the R Markdown file name in the urlname argument. The default NULL copies the current version available in the chose template.

genWorkenvir(workflow="systemPipeR/SPrnaseq", url = "https://raw.githubusercontent.com/systemPipeR/systemPipeRNAseq/cluster/vignettes/systemPipeRNAseq.Rmd", 
             urlname = "rnaseq_V-cluster.Rmd")
setwd("rnaseq")

5 Dynamic generation of workflow template

It is possible to create a new workflow structure from RStudio menu File -> New File -> R Markdown -> From Template -> systemPipeR New WorkFlow. This interactive option creates the same environment as demonstrated above.

Figure 1: Selecting workflow template within RStudio.

6 Directory Structure

The workflow templates generated by genWorkenvir contain the following preconfigured directory structure:

  • workflow/ (e.g. rnaseq/)
    • This is the root directory of the R session running the workflow.
    • Run script ( *.Rmd) and sample annotation (targets.txt) files are located here.
    • Note, this directory can have any name (e.g. rnaseq, varseq). Changing its name does not require any modifications in the run script(s).
    • Important subdirectories:
      • param/
        • Stores non-CWL parameter files such as: *.param, *.tmpl and *.run.sh. These files are only required for backwards compatibility to run old workflows using the previous custom command-line interface.
        • param/cwl/: This subdirectory stores all the CWL parameter files. To organize workflows, each can have its own subdirectory, where all CWL param and input.yml files need to be in the same subdirectory.
      • data/
        • FASTQ files
        • FASTA file of reference (e.g. reference genome)
        • Annotation files
        • etc.
      • results/
        • Analysis results are usually written to this directory, including: alignment, variant and peak files (BAM, VCF, BED); tabular result files; and image/plot files
        • Note, the user has the option to organize results files for a given sample and analysis step in a separate subdirectory.

Note: Directory names are indicated in green. Users can change this structure as needed, but need to adjust the code in their workflows accordingly.

Figure 2: systemPipeR’s preconfigured directory structure.

6.1 Return paths to sample data

The location of the sample data provided by systemPipeRdata can be returned as a list.

pathList()[1:2]
## $targets
## [1] "/tmp/RtmpuluWRs/Rinst2ecf5b5523b308/systemPipeRdata/extdata/param/targets.txt"
## 
## $targetsPE
## [1] "/tmp/RtmpuluWRs/Rinst2ecf5b5523b308/systemPipeRdata/extdata/param/targetsPE.txt"

7 Version information

sessionInfo()
## R Under development (unstable) (2023-10-22 r85388)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_GB              LC_COLLATE=C              
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## time zone: America/New_York
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats4    stats     graphics  grDevices utils    
## [6] datasets  methods   base     
## 
## other attached packages:
##  [1] systemPipeRdata_2.7.0       systemPipeR_2.9.0          
##  [3] ShortRead_1.61.0            GenomicAlignments_1.39.0   
##  [5] SummarizedExperiment_1.33.0 Biobase_2.63.0             
##  [7] MatrixGenerics_1.15.0       matrixStats_1.0.0          
##  [9] BiocParallel_1.37.0         Rsamtools_2.19.0           
## [11] Biostrings_2.71.1           XVector_0.43.0             
## [13] GenomicRanges_1.55.0        GenomeInfoDb_1.39.0        
## [15] IRanges_2.37.0              S4Vectors_0.41.0           
## [17] BiocGenerics_0.49.0         BiocStyle_2.31.0           
## 
## loaded via a namespace (and not attached):
##  [1] gtable_0.3.4            xfun_0.40              
##  [3] bslib_0.5.1             hwriter_1.3.2.1        
##  [5] ggplot2_3.4.4           remotes_2.4.2.1        
##  [7] htmlwidgets_1.6.2       latticeExtra_0.6-30    
##  [9] lattice_0.22-5          generics_0.1.3         
## [11] vctrs_0.6.4             tools_4.4.0            
## [13] bitops_1.0-7            parallel_4.4.0         
## [15] fansi_1.0.5             tibble_3.2.1           
## [17] pkgconfig_2.0.3         Matrix_1.6-1.1         
## [19] RColorBrewer_1.1-3      lifecycle_1.0.3        
## [21] GenomeInfoDbData_1.2.11 stringr_1.5.0          
## [23] compiler_4.4.0          deldir_1.0-9           
## [25] munsell_0.5.0           codetools_0.2-19       
## [27] htmltools_0.5.6.1       sass_0.4.7             
## [29] RCurl_1.98-1.12         yaml_2.3.7             
## [31] pillar_1.9.0            crayon_1.5.2           
## [33] jquerylib_0.1.4         DelayedArray_0.29.0    
## [35] cachem_1.0.8            abind_1.4-5            
## [37] tidyselect_1.2.0        digest_0.6.33          
## [39] stringi_1.7.12          dplyr_1.1.3            
## [41] bookdown_0.36           fastmap_1.1.1          
## [43] grid_4.4.0              colorspace_2.1-0       
## [45] cli_3.6.1               SparseArray_1.3.0      
## [47] magrittr_2.0.3          S4Arrays_1.3.0         
## [49] utf8_1.2.4              scales_1.2.1           
## [51] rmarkdown_2.25          jpeg_0.1-10            
## [53] interp_1.1-4            png_0.1-8              
## [55] evaluate_0.22           knitr_1.44             
## [57] rlang_1.1.1             Rcpp_1.0.11            
## [59] glue_1.6.2              BiocManager_1.30.22    
## [61] formatR_1.14            jsonlite_1.8.7         
## [63] R6_2.5.1                zlibbioc_1.49.0

8 Funding

This project was supported by funds from the National Institutes of Health (NIH) and the National Science Foundation (NSF).

References

H Backman, Tyler W, and Thomas Girke. 2016. “systemPipeR: NGS workflow and report generation environment.” BMC Bioinformatics 17 (1): 388. https://doi.org/10.1186/s12859-016-1241-0.

Howard, Brian E, Qiwen Hu, Ahmet Can Babaoglu, Manan Chandra, Monica Borghi, Xiaoping Tan, Luyan He, et al. 2013. “High-Throughput RNA Sequencing of Pseudomonas-Infected Arabidopsis Reveals Hidden Transcriptome Complexity and Novel Splice Variants.” PLoS One 8 (10): e74183. https://doi.org/10.1371/journal.pone.0074183.