ndpRT | R Documentation |
This function calculates the similarity of all pairs of peaks from 2 samples, using the spectra similarity and the retention time differencies
ndpRT(s1, s2, t1, t2, D)
s1 |
data matrix for sample 1 |
s2 |
data matrix for sample 2 |
t1 |
vector of retention times for sample 1 |
t2 |
vector of retention times for sample 2 |
D |
retention time window for the matching |
Computes the normalized dot product between every pair of peak vectors in
the retention time window (D
)and returns a similarity matrix.
matrix of similarities
Riccardo Romoli
peaksAlignment
## Not Run require(gcspikelite) files <- list.files(path = paste(find.package("gcspikelite"), "data", sep = "/"),"CDF", full = TRUE) data <- peaksDataset(files[1:2], mz = seq(50, 550), rtrange = c(7.5, 8.5)) ## create settings object mfp <- xcms::MatchedFilterParam(fwhm = 10, snthresh = 5) cwt <- xcms::CentWaveParam() data <- addXCMSPeaks(files[1:2], data, settings = mfp, multipleMF = FALSE) data ## review peak picking plotChrom(data, rtrange = c(7.5, 10.5), runs = c(1:2)) r <- ndpRT(data@peaksdata[[1]], data@peaksdata[[2]], data@peaksrt[[1]], data@peaksrt[[2]], D = 50) ## End (Not Run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.