Getting Started
Getting Started
Installation
The R software for running systemPipeR
can be downloaded from CRAN. The systemPipeR
* environment can be installed from the R console using the BiocManager::install
* command. The associated data package systemPipeRdata
can be installed the same way. The latter is a helper package for generating systemPipeR
workflow environments with a single command containing all parameter files and sample data required to quickly test and run workflows.
if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
BiocManager::install("systemPipeR")
BiocManager::install("systemPipeRdata")
Please note that if you desire to use a third-party command line tool, the particular tool and dependencies need to be installed and exported in your PATH. See details.
Loading package and documentation
library("systemPipeR") # Loads the package
library(help = "systemPipeR") # Lists package info
vignette("systemPipeR") # Opens vignette
Load sample data and workflow templates
The mini sample FASTQ files used by this overview vignette as well as the
associated workflow reporting vignettes can be loaded via the systemPipeRdata
package as shown below. 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.
The following generates a fully populated systemPipeR
workflow environment
(here for RNA-Seq) in the current working directory of an R session. At this time
the package includes workflow templates for RNA-Seq, ChIP-Seq, VAR-Seq, and Ribo-Seq.
Templates for additional NGS applications will be provided in the future.
library(systemPipeRdata)
genWorkenvir(workflow = "rnaseq")
setwd("rnaseq")
If you desire run this tutorial with your data set, please follow the instruction here:
library(systemPipeRdata)
genWorkenvir(workflow = "new", mydirname = "FEB_project")
Workflow template from an individual’s package
The package provides pre-configured workflows and reporting templates for a wide range of NGS applications that are listed here. Additional workflow templates will be provided in the future. If you desire to use an individual package and version, follow the instruction below:
library(systemPipeRdata)
genWorkenvir(workflow = NULL, package_repo = "systemPipeR/systemPipeRIBOseq", ref = "master",
subdir = NULL)
library(systemPipeRdata)
genWorkenvir(workflow = NULL, package_repo = "systemPipeR/systemPipeRNAseq", ref = "singleMachine",
subdir = NULL)
Directory Structure
The working environment of the sample data loaded in the previous step contains the following pre-configured directory structure (Figure 4). Directory names are indicated in green. Users can change this structure as needed, but need to adjust the code in their workflows accordingly.
- 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
andinput.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.
- param/

Figure 5: systemPipeR’s preconfigured directory structure.
The following parameter files are included in each workflow template:
targets.txt
: initial one provided by user; downstreamtargets_*.txt
files are generated automatically*.param/cwl
: defines parameter for input/output file operations, e.g.:hisat2-se/hisat2-mapping-se.cwl
hisat2-se/hisat2-mapping-se.yml
*_run.sh
: optional bash scripts- Configuration files for computer cluster environments (skip on single machines):
.batchtools.conf.R
: defines the type of scheduler forbatchtools
pointing to template file of cluster, and located in user’s home directory*.tmpl
: specifies parameters of scheduler used by a system, e.g. Torque, SGE, Slurm, etc.
Structure of targets
file
The targets
file defines all input files (e.g. FASTQ, BAM, BCF) and sample
comparisons of an analysis workflow. The following shows the format of a sample
targets
file included in the package. It also can be viewed and downloaded
from systemPipeR
’s GitHub repository here.
In a target file with a single type of input files, here FASTQ files of single-end (SE) reads, the first three columns are mandatory including their column
names, while it is four mandatory columns for FASTQ files of PE reads. All
subsequent columns are optional and any number of additional columns can be added as needed.
Users should note here, the usage of targets files is optional when using systemPipeR’s new CWL interface. They can be replaced by a standard YAML input file used by CWL. Since for organizing experimental variables targets files are extremely useful and user-friendly. Thus, we encourage users to keep using them.
Structure of targets
file for single-end (SE) samples
library(systemPipeR)
targetspath <- system.file("extdata", "targets.txt", package = "systemPipeR")
read.delim(targetspath, comment.char = "#")[1:4, ]
## FileName SampleName Factor SampleLong Experiment
## 1 ./data/SRR446027_1.fastq.gz M1A M1 Mock.1h.A 1
## 2 ./data/SRR446028_1.fastq.gz M1B M1 Mock.1h.B 1
## 3 ./data/SRR446029_1.fastq.gz A1A A1 Avr.1h.A 1
## 4 ./data/SRR446030_1.fastq.gz A1B A1 Avr.1h.B 1
## Date
## 1 23-Mar-2012
## 2 23-Mar-2012
## 3 23-Mar-2012
## 4 23-Mar-2012
To work with custom data, users need to generate a targets
file containing
the paths to their own FASTQ files and then provide under targetspath
the
path to the corresponding targets
file.
Structure of targets
file for paired-end (PE) samples
For paired-end (PE) samples, the structure of the targets file is similar, where
users need to provide two FASTQ path columns: FileName1
and FileName2
with the paths to the PE FASTQ files.
targetspath <- system.file("extdata", "targetsPE.txt", package = "systemPipeR")
read.delim(targetspath, comment.char = "#")[1:2, 1:6]
## FileName1 FileName2 SampleName Factor
## 1 ./data/SRR446027_1.fastq.gz ./data/SRR446027_2.fastq.gz M1A M1
## 2 ./data/SRR446028_1.fastq.gz ./data/SRR446028_2.fastq.gz M1B M1
## SampleLong Experiment
## 1 Mock.1h.A 1
## 2 Mock.1h.B 1
Sample comparisons
Sample comparisons are defined in the header lines of the targets
file
starting with ‘# <CMP>
.’
readLines(targetspath)[1:4]
## [1] "# Project ID: Arabidopsis - Pseudomonas alternative splicing study (SRA: SRP010938; PMID: 24098335)"
## [2] "# The following line(s) allow to specify the contrasts needed for comparative analyses, such as DEG identification. All possible comparisons can be specified with 'CMPset: ALL'."
## [3] "# <CMP> CMPset1: M1-A1, M1-V1, A1-V1, M6-A6, M6-V6, A6-V6, M12-A12, M12-V12, A12-V12"
## [4] "# <CMP> CMPset2: ALL"
The function readComp
imports the comparison information and stores it in a
list
. Alternatively, readComp
can obtain the comparison information from
the corresponding SYSargs
object (see below). Note, these header lines are
optional. They are mainly useful for controlling comparative analyses according
to certain biological expectations, such as identifying differentially expressed
genes in RNA-Seq experiments based on simple pair-wise comparisons.
readComp(file = targetspath, format = "vector", delim = "-")
## $CMPset1
## [1] "M1-A1" "M1-V1" "A1-V1" "M6-A6" "M6-V6" "A6-V6" "M12-A12"
## [8] "M12-V12" "A12-V12"
##
## $CMPset2
## [1] "M1-A1" "M1-V1" "M1-M6" "M1-A6" "M1-V6" "M1-M12" "M1-A12"
## [8] "M1-V12" "A1-V1" "A1-M6" "A1-A6" "A1-V6" "A1-M12" "A1-A12"
## [15] "A1-V12" "V1-M6" "V1-A6" "V1-V6" "V1-M12" "V1-A12" "V1-V12"
## [22] "M6-A6" "M6-V6" "M6-M12" "M6-A12" "M6-V12" "A6-V6" "A6-M12"
## [29] "A6-A12" "A6-V12" "V6-M12" "V6-A12" "V6-V12" "M12-A12" "M12-V12"
## [36] "A12-V12"
Structure of the new param
files and construct SYSargs2
container
SYSargs2
stores all the information and instructions needed for processing
a set of input files with a single or many command-line steps within a workflow
(i.e. several components of the software or several independent software tools).
The SYSargs2
object is created and fully populated with the loadWF
and renderWF functions, respectively.
In CWL, files with the extension .cwl
define the parameters of a chosen
command-line step or workflow, while files with the extension .yml
define
the input variables of command-line steps. Note, input variables provided
by a targets file can be passed on to a SYSargs2
instance via the inputvars
argument of the renderWF function.
The following imports a .cwl
file (here hisat2-mapping-se.cwl
) for running
the short read aligner HISAT2 (Kim, Langmead, and Salzberg 2015). The loadWorkflow and renderWF
functions render the proper command-line strings for each sample and software tool.
library(systemPipeR)
targets <- system.file("extdata", "targets.txt", package = "systemPipeR")
dir_path <- system.file("extdata/cwl/hisat2/hisat2-se", package = "systemPipeR")
WF <- loadWF(targets = targets, wf_file = "hisat2-mapping-se.cwl", input_file = "hisat2-mapping-se.yml",
dir_path = dir_path)
WF <- renderWF(WF, inputvars = c(FileName = "_FASTQ_PATH1_", SampleName = "_SampleName_"))
Several accessor methods are available that are named after the slot names of the SYSargs2
object.
names(WF)
## [1] "targets" "targetsheader" "modules" "wf"
## [5] "clt" "yamlinput" "cmdlist" "input"
## [9] "output" "cwlfiles" "inputvars"
Of particular interest is the cmdlist()
method. It constructs the system
commands for running command-line software as specified by a given .cwl
file combined with the paths to the input samples (e.g. FASTQ files) provided
by a targets
file. The example below shows the cmdlist()
output for
running HISAT2 on the first SE read sample. Evaluating the output of
cmdlist()
can be very helpful for designing and debugging .cwl
files
of new command-line software or changing the parameter settings of existing
ones.
cmdlist(WF)[1]
## $M1A
## $M1A$`hisat2-mapping-se`
## [1] "hisat2 -S ./results/M1A.sam -x ./data/tair10.fasta -k 1 --min-intronlen 30 --max-intronlen 3000 -U ./data/SRR446027_1.fastq.gz --threads 4"
The output components of SYSargs2
define the expected output files for
each step in the workflow; some of which are the input for the next workflow step,
here next SYSargs2
instance (see Figure 2).
output(WF)[1]
## $M1A
## $M1A$`hisat2-mapping-se`
## [1] "./results/M1A.sam"
modules(WF)
## module1
## "hisat2/2.1.0"
targets(WF)[1]
## $M1A
## $M1A$FileName
## [1] "./data/SRR446027_1.fastq.gz"
##
## $M1A$SampleName
## [1] "M1A"
##
## $M1A$Factor
## [1] "M1"
##
## $M1A$SampleLong
## [1] "Mock.1h.A"
##
## $M1A$Experiment
## [1] 1
##
## $M1A$Date
## [1] "23-Mar-2012"
targets.as.df(targets(WF))[1:4, 1:4]
## FileName SampleName Factor SampleLong
## 1 ./data/SRR446027_1.fastq.gz M1A M1 Mock.1h.A
## 2 ./data/SRR446028_1.fastq.gz M1B M1 Mock.1h.B
## 3 ./data/SRR446029_1.fastq.gz A1A A1 Avr.1h.A
## 4 ./data/SRR446030_1.fastq.gz A1B A1 Avr.1h.B
output(WF)[1]
## $M1A
## $M1A$`hisat2-mapping-se`
## [1] "./results/M1A.sam"
cwlfiles(WF)
## $cwl
## [1] "/home/dcassol/src/R-4.0.3/library/systemPipeR/extdata/cwl/hisat2/hisat2-se/hisat2-mapping-se.cwl"
##
## $yml
## [1] "/home/dcassol/src/R-4.0.3/library/systemPipeR/extdata/cwl/hisat2/hisat2-se/hisat2-mapping-se.yml"
##
## $steps
## [1] "hisat2-mapping-se"
##
## $targets
## [1] "/home/dcassol/src/R-4.0.3/library/systemPipeR/extdata/targets.txt"
inputvars(WF)
## $FileName
## [1] "_FASTQ_PATH1_"
##
## $SampleName
## [1] "_SampleName_"
In an ‘R-centric’ rather than a ‘CWL-centric’ workflow design the connectivity
among workflow steps is established by writing all relevant output with the
writeTargetsout function to a new targets file that serves as input to the
next loadWorkflow and renderWF call. By chaining several SYSargs2
steps
together one can construct complex workflows involving many sample-level
input/output file operations with any combination of command-line or R-based
software. Alternatively, a CWL-centric workflow design can be used that defines
all/most workflow steps with CWL workflow and parameter files. Due to time and
space restrictions, the CWL-centric approach is not covered by this tutorial.
Third-party software tools
Current, systemPipeR provides the param
file templates for third-party software tools. Please check the listed software tools.
Tool Name | Description | Step |
---|---|---|
bwa | BWA is a software package for mapping low-divergent sequences against a large reference genome, such as the human genome. | Alignment |
Bowtie2 | Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. | Alignment |
FASTX-Toolkit | FASTX-Toolkit is a collection of command line tools for Short-Reads FASTA/FASTQ files preprocessing. | Read Preprocessing |
TransRate | Transrate is software for de-novo transcriptome assembly quality analysis. | Quality |
Gsnap | GSNAP is a genomic short-read nucleotide alignment program. | Alignment |
Samtools | Samtools is a suite of programs for interacting with high-throughput sequencing data. | Post-processing |
Trimmomatic | Trimmomatic is a flexible read trimming tool for Illumina NGS data. | Read Preprocessing |
Rsubread | Rsubread is a Bioconductor software package that provides high-performance alignment and read counting functions for RNA-seq reads. | Alignment |
Picard | Picard is a set of command line tools for manipulating high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF. | Manipulating HTS data |
Busco | BUSCO assesses genome assembly and annotation completeness with Benchmarking Universal Single-Copy Orthologs. | Quality |
Hisat2 | HISAT2 is a fast and sensitive alignment program for mapping NGS reads (both DNA and RNA) to reference genomes. | Alignment |
Tophat2 | TopHat is a fast splice junction mapper for RNA-Seq reads. | Alignment |
GATK | Variant Discovery in High-Throughput Sequencing Data. | Variant Discovery |
STAR | STAR is an ultrafast universal RNA-seq aligner. | Alignment |
Trim\_galore | Trim Galore is a wrapper around Cutadapt and FastQC to consistently apply adapter and quality trimming to FastQ files. | Read Preprocessing |
TransDecoder | TransDecoder identifies candidate coding regions within transcript sequences. | Find Coding Regions |
Trinity | Trinity assembles transcript sequences from Illumina RNA-Seq data. | denovo Transcriptome Assembly |
Trinotate | Trinotate is a comprehensive annotation suite designed for automatic functional annotation of transcriptomes. | Transcriptome Functional Annotation |
MACS2 | MACS2 identifies transcription factor binding sites in ChIP-seq data. | Peak calling |
Kallisto | kallisto is a program for quantifying abundances of transcripts from RNA-Seq data. | Read counting |
BCFtools | BCFtools is a program for variant calling and manipulating files in the Variant Call Format (VCF) and its binary counterpart BCF. | Variant Discovery |
Bismark | Bismark is a program to map bisulfite treated sequencing reads to a genome of interest and perform methylation calls in a single step. | Bisulfite mapping |
Fastqc | FastQC is a quality control tool for high throughput sequence data. | Quality |
Blast | BLAST finds regions of similarity between biological sequences. | Blast |
Remember, if you desire to run any of these tools, make sure to have the respective software installed on your system and configure in the PATH. You can check as follows:
tryCL(command = "grep")
Structure of param
file and SYSargs
container (Previous version)
The param
file defines the parameters of a chosen command-line software.
The following shows the format of a sample param
file provided by this package.
parampath <- system.file("extdata", "tophat.param", package = "systemPipeR")
read.delim(parampath, comment.char = "#")
## PairSet Name Value
## 1 modules <NA> bowtie2/2.2.5
## 2 modules <NA> tophat/2.0.14
## 3 software <NA> tophat
## 4 cores -p 4
## 5 other <NA> -g 1 --segment-length 25 -i 30 -I 3000
## 6 outfile1 -o <FileName1>
## 7 outfile1 path ./results/
## 8 outfile1 remove <NA>
## 9 outfile1 append .tophat
## 10 outfile1 outextension .tophat/accepted_hits.bam
## 11 reference <NA> ./data/tair10.fasta
## 12 infile1 <NA> <FileName1>
## 13 infile1 path <NA>
## 14 infile2 <NA> <FileName2>
## 15 infile2 path <NA>
The systemArgs
function imports the definitions of both the param
file
and the targets
file, and stores all relevant information in a SYSargs
object (S4 class). To run the pipeline without command-line software, one can
assign NULL
to sysma
instead of a param
file. In addition, one can
start systemPipeR
workflows with pre-generated BAM files by providing a
targets file where the FileName
column provides the paths to the BAM files.
Note, in the following example the usage of suppressWarnings()
is only relevant for
building this vignette. In typical workflows it should be removed.
targetspath <- system.file("extdata", "targets.txt", package = "systemPipeR")
args <- suppressWarnings(systemArgs(sysma = parampath, mytargets = targetspath))
args
## An instance of 'SYSargs' for running 'tophat' on 18 samples
Several accessor methods are available that are named after the slot names of the SYSargs
object.
names(args)
## [1] "targetsin" "targetsout" "targetsheader" "modules"
## [5] "software" "cores" "other" "reference"
## [9] "results" "infile1" "infile2" "outfile1"
## [13] "sysargs" "outpaths"
Of particular interest is the sysargs()
method. It constructs the system
commands for running command-lined software as specified by a given param
file combined with the paths to the input samples (e.g. FASTQ files) provided
by a targets
file. The example below shows the sysargs()
output for
running TopHat2 on the first PE read sample. Evaluating the output of
sysargs()
can be very helpful for designing and debugging param
files
of new command-line software or changing the parameter settings of existing
ones.
sysargs(args)[1]
## M1A
## "tophat -p 4 -g 1 --segment-length 25 -i 30 -I 3000 -o /home/dcassol/danielac@ucr.edu/projects/SPR_WF_org/systemPipeR.github.io_docsy/content/en/spr/systempiper/results/SRR446027_1.fastq.gz.tophat /home/dcassol/danielac@ucr.edu/projects/SPR_WF_org/systemPipeR.github.io_docsy/content/en/spr/systempiper/data/tair10.fasta ./data/SRR446027_1.fastq.gz "
modules(args)
## [1] "bowtie2/2.2.5" "tophat/2.0.14"
cores(args)
## [1] 4
outpaths(args)[1]
## M1A
## "/home/dcassol/danielac@ucr.edu/projects/SPR_WF_org/systemPipeR.github.io_docsy/content/en/spr/systempiper/results/SRR446027_1.fastq.gz.tophat/accepted_hits.bam"
The content of the param
file can also be returned as JSON object as follows (requires rjson
package).
systemArgs(sysma = parampath, mytargets = targetspath, type = "json")
## [1] "{\"modules\":{\"n1\":\"\",\"v2\":\"bowtie2/2.2.5\",\"n1\":\"\",\"v2\":\"tophat/2.0.14\"},\"software\":{\"n1\":\"\",\"v1\":\"tophat\"},\"cores\":{\"n1\":\"-p\",\"v1\":\"4\"},\"other\":{\"n1\":\"\",\"v1\":\"-g 1 --segment-length 25 -i 30 -I 3000\"},\"outfile1\":{\"n1\":\"-o\",\"v2\":\"<FileName1>\",\"n3\":\"path\",\"v4\":\"./results/\",\"n5\":\"remove\",\"v1\":\"\",\"n2\":\"append\",\"v3\":\".tophat\",\"n4\":\"outextension\",\"v5\":\".tophat/accepted_hits.bam\"},\"reference\":{\"n1\":\"\",\"v1\":\"./data/tair10.fasta\"},\"infile1\":{\"n1\":\"\",\"v2\":\"<FileName1>\",\"n1\":\"path\",\"v2\":\"\"},\"infile2\":{\"n1\":\"\",\"v2\":\"<FileName2>\",\"n1\":\"path\",\"v2\":\"\"}}"
References
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.
Kim, Daehwan, Ben Langmead, and Steven L Salzberg. 2015. “HISAT: A Fast Spliced Aligner with Low Memory Requirements.” Nat. Methods 12 (4): 357–60.