showallcomp | R Documentation |
The 'showallcomp' function build the string of all comparisons possible using the condition column of a provided experiment table.
showallcomp(expdf, verbose = FALSE)
expdf |
A data frame containing experiment data that should have columns named 'condition', 'replicate', 'strand', and 'path'. |
verbose |
A logical flag indicating whether to print progress messages.
Defaults to |
If less than three conditions, nothing. Otherwise a character vector of all comparisons.
# Create a valid experiment table
exptab <- data.frame(
condition = c("cond1", "cond2", "cond3"),
replicate = c(1, 1, 1),
direction = c("forward", "reverse", "forward"),
strand = c("plus", "minus", "plus"),
path = c("toto/", "toto/", "toto/"))
checkexptab(exptab)
showallcomp(exptab)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.