Defines one executable and its argument vector without invoking a shell.
Stages can reference executables bundled by RBCFTools, executables exported
by another package, or programs available on PATH.
Usage
pipeline_stage(command, args = character(), name = NULL)Examples
pipeline_stage(samtools_path(), c("view", "--help"))
#> $command
#> [1] "/home/runner/work/_temp/Library/RBCFTools/samtools/bin/samtools"
#>
#> $args
#> [1] "view" "--help"
#>
#> $name
#> [1] "samtools"
#>
#> attr(,"class")
#> [1] "rbcftools_pipeline_stage"