readComp | R Documentation |
Parses sample comparisons specified in <CMP>
line(s) of targets file
or in targetsheader
slot of SYSargs
object. All possible comparisons
can be specified with 'CMPset: ALL'.
readComp(file, format = "vector", delim = "-")
file |
Path to targets file. Alternatively, a |
format |
Object type to return: |
delim |
Delimiter to use when sample comparisons are returned as |
list
where each component is named according to the name(s) used in the <CMP>
line(s) of the targets file. The list will contain as many sample comparisons sets (list components) as there are sample comparisons lines in the corresponding targets file.
Thomas Girke
## Return comparisons from targets file
targetspath <- system.file("extdata", "targets.txt", package="systemPipeR")
read.delim(targetspath, comment.char = "#")
readComp(file=targetspath, format="vector", delim="-")
## Return comparisons from SYSargs2 object
targets <- system.file("extdata", "targets.txt", package="systemPipeR")
dir_path <- system.file("extdata/cwl", package="systemPipeR")
args <- loadWorkflow(targets=targets, wf_file="hisat2/hisat2-mapping-se.cwl",
input_file="hisat2/hisat2-mapping-se.yml", dir_path=dir_path)
args <- renderWF(args, inputvars=c(FileName="_FASTQ_PATH1_", SampleName="_SampleName_"))
args
readComp(args, format = "vector", delim = "-")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.