Skip to content
Snippets Groups Projects
Unverified Commit 3f5e332d authored by Todor Kondic's avatar Todor Kondic
Browse files

extraction: Add centroided1, centroided

* R/extraction.R(centroided1,centroided): New functions.
parent 59823615
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,7 @@ Imports:
tools,
scales,
parallel,
future,
yaml,
mzR,
MSnbase,
......
......@@ -19,6 +19,30 @@ load_raw_data<-function(fn,mode="inMemory") {
}
centroided1 <- function(ms) {
if (all(MSnbase::centroided(ms)) == T)
return(T) else {
state <- MSnbase::isCentroided(ms)
N <- length(state)
fls <-length(which(state == F))
if (fls/(1.*N) < 0.01) T else F
}
}
centroided <- function(msvec) {
if (is.vector(msvec)) {
f <- list()
for (i in 1:length(msvec)) {
f[[i]] <- future::future(centroided1(msvec[[i]]))
}
lapply(f, FUN = future::value)
} else {
centroided1(msvec)
}
}
acq_mz<-function(tabFn) {
df<-read.csv(tabFn,
stringsAsFactors=F,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment