Description Usage Arguments Value See Also Examples
This function splits the features in the network in clique groups. The cliques are fully connected components that have high similarity for inner edges and low similarity for edges outside the clique. This function finds the clique groups that better fit this criteria, moving nodes to different groups until we find the groups that have the best log-likelihood.
1 | computeCliques(anclique, tol = 1e-05, silent = TRUE)
|
anclique |
This function uses S4 'anClique' object. Gives warning if clique groups have already been computed. |
tol |
Minimum relative increase in log-likelihood to do a new round of log-likelihood maximisation. |
silent |
If 'FALSE' print on the console the log-likelihood maximization progress. Default is 'TRUE'. |
It returns an 'anClique' object with the computed clique groups. It adds the column 'cliqueGroup' to the 'peaklist' in the 'anClique' object.
1 2 3 4 5 6 | mzfile <- system.file("standards.mzXML", package = "cliqueMS")
msSet <- xcms::xcmsSet(files = mzfile, method = "centWave",
ppm = 15, peakwidth = c(5,20), snthresh = 10)
ex.anClique <- createanClique(msSet)
show(ex.anClique)
netlist <- createNetwork(msSet, peaks(msSet), filter = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.