performTest | R Documentation |
This function performs diffHic differential analysis for every pixel of the matrix.
performTest(
matrices,
cond,
outFile = NULL,
filterLc = FALSE,
filterFlank = FALSE,
flank = NULL
)
## S3 method for class 'resdiff'
print(x, ...)
## S3 method for class 'resdiff'
summary(object, ...)
## S3 method for class 'resdiff'
plot(x, whichPlot = c("p.value", "p.adj", "logFC"), ...)
matrices |
an object of class
|
cond |
a vector indicating the condition of each column of
|
outFile |
path to export outputs of the function, set to |
filterLc |
logical. Whether to filter out low counts or not. Set to
|
filterFlank |
logical. Whether to filter out on enriched pairs. Set to
|
flank |
flank parameter used only if |
x |
a |
... |
not used |
object |
a |
whichPlot |
a character string indicating which plot to display.
Possible values are |
An object of class resdiff
with the following entries:
region1 |
the first bin of the interaction |
region2 |
the second bin of the interaction |
p.value |
the p-value of the |
p.adj |
the adjusted p-value of the |
logFC |
the log2-fold-change of the interaction |
Élise Jorge elise.jorge@inrae.fr
Sylvain Foissac sylvain.foissac@inrae.fr
Pierre Neuvial pierre.neuvial@math.univ-toulouse.fr
Nathalie Vialaneix nathalie.vialaneix@inrae.fr
data("pighic")
resdiff <- performTest(pighic$data, pighic$conditions)
resdiff
summary(resdiff)
plot(resdiff)
plot(resdiff, whichPlot = "p.adj")
plot(resdiff, whichPlot = "logFC")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.