Description Usage Arguments Value Author(s) Examples
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'.
1 |
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
1 2 3 4 5 6 7 8 9 10 | ## 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 SYSargs object
param <- system.file("extdata", "tophat.param", package="systemPipeR")
targets <- system.file("extdata", "targets.txt", package="systemPipeR")
args <- systemArgs(sysma=param, mytargets=targets)
readComp(args, format = "vector", delim = "-")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.