diffnet | R Documentation |
Constructs a differential network for objects of class
microNet
. Three methods for identifying differentially associated
taxa are provided: Fisher's z-test, permutation test, discordant method.
diffnet(
x,
diffMethod = "permute",
discordThresh = 0.8,
n1 = NULL,
n2 = NULL,
fisherTrans = TRUE,
nPerm = 1000L,
permPvalsMethod = "pseudo",
cores = 1L,
verbose = TRUE,
logFile = NULL,
seed = NULL,
alpha = 0.05,
adjust = "lfdr",
lfdrThresh = 0.2,
trueNullMethod = "convest",
pvalsVec = NULL,
fileLoadAssoPerm = NULL,
fileLoadCountsPerm = NULL,
storeAssoPerm = FALSE,
fileStoreAssoPerm = "assoPerm",
storeCountsPerm = FALSE,
fileStoreCountsPerm = c("countsPerm1", "countsPerm2"),
assoPerm = NULL
)
x |
an object of class |
diffMethod |
character string indicating the method used for determining
differential associations. Possible values are |
discordThresh |
numeric value in [0,1]. Only used for the discordant method. Specifies a threshold for the posterior probability that a pair of taxa is differentially correlated between the groups. Taxa pairs with a posterior above this threshold are connected in the network. Defaults to 0.8. |
n1 , n2 |
integer giving the sample sizes of the two data sets used for network construction. Needed for Fisher's z-test if association matrices instead of count matrices were used for network construction. |
fisherTrans |
logical. If |
nPerm |
integer giving the number of permutations for the permutation tests. Defaults to 1000L. |
permPvalsMethod |
character indicating the method used for determining p-values for permutation tests. Currently, "pseudo" is the only available option (see details). |
cores |
integer indicating the number of CPU cores used for
permutation tests. If cores > 1, the tests are performed parallel.
Is limited to the number of available CPU cores determined by
|
verbose |
logical. If |
logFile |
a character string defining the name of a log file, which is
created when permutation tests are conducted (therein the current iteration
numbers are stored). Defaults to |
seed |
integer giving a seed for reproducibility of the results. |
alpha |
numeric value between 0 and 1 giving the significance level. Significantly different correlations are connected in the network. Defaults to 0.05. |
adjust |
character indicating the method used for multiple testing
adjustment for the tests for differentially correlated pairs of taxa.
Possible values are "lfdr" (default) for local
false discovery rate correction (via |
lfdrThresh |
defines a threshold for the local fdr if "lfdr" is chosen as method for multiple testing correction. Defaults to 0.2 meaning that correlations with a corresponding local fdr less than or equal to 0.2 are identified as significant. |
trueNullMethod |
character indicating the method used for estimating the
proportion of true null hypotheses from a vector of p-values. Used for the
adaptive Benjamini-Hochberg method for multiple testing adjustment (chosen
by |
pvalsVec |
vector with p-values used for permutation tests. Can be used for performing another method for multiple testing adjustment without executing the complete permutation process again. See the example. |
fileLoadAssoPerm |
character giving the name (without extension)
or path of the file storing the "permuted" association/dissimilarity
matrices that have been exported by setting |
fileLoadCountsPerm |
character giving the name (without extension)
or path of the file storing the "permuted" count matrices that have been
exported by setting |
storeAssoPerm |
logical indicating whether the association (or
dissimilarity) matrices for the permuted data should be stored in a file.
The filename is given via |
fileStoreAssoPerm |
character giving the file name to store a matrix containing a matrix with associations/dissimilarities for the permuted data. Can also be a path. |
storeCountsPerm |
logical indicating whether the permuted count matrices
should be stored in an external file. Defaults to |
fileStoreCountsPerm |
character vector with two elements giving the names of two files storing the permuted count matrices belonging to the two groups. |
assoPerm |
only needed for output generated with NetCoMi v1.0.1! A
list with two elements used for the permutation procedure.
Each entry must contain association matrices for |
Permutation procedure:
The null hypothesis of these tests is defined as
H_0: a1_ij - a2_ij = 0,
where a1_ij
and a2_ij
denote the
association between taxon i and j in group 1 and 2, respectively.
To generate a sampling distribution of the differences under H_0
,
the group labels are randomly reassigned to the samples while the group
sizes are kept. The associations are then re-estimated for each permuted
data set. The p-values are calculated as the proportion of
"permutation-differences" being larger than the observed difference. A
pseudo-count is added to the numerator and denominator in order to avoid
zero p-values. The p-values should be adjusted for multiple testing.
The function returns an object of class diffnet
. Depending on
the performed test method, the output contains the following
elements:
Permutation tests:
diffMat | matrix with absolute differences of associations that are significantly different from zero; optional adjacency matrix |
diffAdjustMat | matrix with absolute differences of associations that are significantly different from zero (after multiple testing correction); optional adjacency matrix |
pvalsVec | vector with p-values |
pAdjustVec | vector with adjusted p-values |
pvalsMat | matrix with p-values |
pAdjustMat | matrix with adjusted p-values |
testStatData | vector with test statistics (absolute differences of associations) for the original data |
testStatPerm | matrix with test statistics (absolute differences of associations) for the permuted data |
assoMat1,assoMat2 | matrices with estimated associations (of the original data) |
Discordant:
assoMat1,assoMat2 | matrices with estimated correlations |
diffMat | adjacency matrix (absolute difference of correlations) |
classMat | matrix with classes assigned to a taxa pair |
diffProbs | matrix with posterior probabilities that a taxa pair is differentially correlated between the groups |
Fisher's z-test:
diffMat | matrix with absolute differences of associations that are significantly different from zero; optional adjacency matrix |
diffAdjustMat | matrix with absolute differences of associations that are significantly different from zero (after multiple testing correction); optional adjacency matrix |
pvalsVec | vector with p-values |
pAdjustVec | vector with adjusted p-values |
pvalsMat | matrix with p-values |
pAdjustMat | matrix with adjusted p-values |
assoMat1,assoMat2 | matrices with estimated associations (of the original data) |
benjamini2000adaptiveNetCoMi
\insertRefdiscordant2016NetCoMi
\insertReffarcomeni2007someNetCoMi
\insertReffisher1992statisticalNetCoMi
\insertRefgill2010statisticalNetCoMi
plot.diffnet
# Load data sets from American Gut Project (from SpiecEasi package)
data("amgut1.filt")
# Generate a random group vector
set.seed(123456)
group <- sample(1:2, nrow(amgut1.filt), replace = TRUE)
# Network construction:
amgut_net <- netConstruct(amgut1.filt, group = group,
measure = "pearson",
filtTax = "highestVar",
filtTaxPar = list(highestVar = 30),
zeroMethod = "pseudoZO", normMethod = "clr")
#---------------------
# Differential network
# Fisher's z-test
amgut_diff1 <- diffnet(amgut_net, diffMethod = "fisherTest")
# Network contains no differentially correlated taxa:
## Not run:
plot(amgut_diff1)
## End(Not run)
# Without multiple testing correction (statistically not correct!)
amgut_diff2 <- diffnet(amgut_net, diffMethod = "fisherTest", adjust = "none")
plot(amgut_diff2)
## Not run:
# Permutation test (permutation matrices are stored)
amgut_diff3 <- diffnet(amgut_net, diffMethod = "permute", nPerm = 1000L,
cores = 4L, adjust = "lfdr",
storeCountsPerm = TRUE,
fileStoreCountsPerm = c("countsPerm1", "countsPerm2"),
storeAssoPerm = TRUE,
fileStoreAssoPerm = "assoPerm",
seed = 123456)
# Use the p-values again (different adjustment method possible), but without
# re-estimating the associations
amgut_diff4 <- diffnet(amgut_net, diffMethod = "permute", nPerm = 1000L,
adjust = "none", pvalsVec = amgut_diff3$pvalsVec)
x11()
plot(amgut_diff4)
# Use the permutation associations again (same result as amgut_diff4)
amgut_diff5 <- diffnet(amgut_net, diffMethod = "permute", nPerm = 1000L,
adjust = "none",
fileLoadAssoPerm = "assoPerm")
x11()
plot(amgut_diff5)
# Use the permuted count matrices again (same result as amgut_diff4)
amgut_diff6 <- diffnet(amgut_net, diffMethod = "permute", nPerm = 1000L,
adjust = "none",
fileLoadCountsPerm = c("countsPerm1", "countsPerm2"),
seed = 123456)
x11()
plot(amgut_diff6)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.