Description Usage Arguments Details Value Author(s) Examples
Displays information on connected features of selected features.
1 2 | printInformationSelect(groupname, msp = NULL, ind,
lMatInd, linkMatrixThreshold, similarityMatrix, roundDigits = 2)
|
groupname |
|
msp |
|
ind |
|
lMatInd |
|
linkMatrixThreshold |
|
similarityMatrix |
|
roundDigits |
|
printInformationSelect
is for internal use.
character
that is in HTML format
Thomas Naake, thomasnaake@googlemail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | data("idMSMStoMSP", package = "MetCirc")
data("binnedMSP", package = "MetCirc")
## use only a selection
binnedMSP <- binnedMSP[c(1:20, 29:48, 113:132, 240:259),]
similarityMat <- createSimilarityMatrix(binnedMSP)
groupname <- rownames(similarityMat)
## order similarityMat according to mz
simMat <- createOrderedSimMat(similarityMat, order = "mz")
groupnameMZ <- rownames(simMat)
linkMat_thr <- createLinkMatrix(simMat, 0.8, 1)
ind <- 2
indMZ <- which(groupname[ind] == truncateName(groupnameMZ, NULL, group = TRUE))
linkMatInds <- getLinkMatrixIndices(groupnameMZ[indMZ], linkMat_thr)
MetCirc:::printInformationSelect(groupname = groupname,
msp = NULL, ind = ind, lMatInd = linkMatInds,
linkMatrixThreshold = linkMat_thr,
similarityMatrix = similarityMat, roundDigits = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.