Steps to perform in the pipeline
Value
A named logical vector containing all possible steps for the pipeline. The names of the vector are the step names, and the values are logical indicating whether the step is configured to be performed.
Examples
ppl <- example_pipeline()
#> Writing configuration parameters to: /tmp/RtmpdufN84/file7a1819e2d91d/config_file_31256.json
#> Warning: You have set to use oarfish quantification without gene quantification. Oarfish currently does not collapse UMIs, and gene quantification performs UMI collapsing. You may want to set do_gene_quantification to TRUE for more accurate results.
#> Configured steps:
#> barcode_demultiplex: TRUE
#> genome_alignment: TRUE
#> gene_quantification: FALSE
#> isoform_identification: TRUE
#> read_realignment: TRUE
#> transcript_quantification: TRUE
#> samtools not found, will use Rsamtools package instead
steps(ppl)
#> barcode_demultiplex genome_alignment gene_quantification
#> TRUE TRUE FALSE
#> isoform_identification read_realignment transcript_quantification
#> TRUE TRUE TRUE