Skip to content
Snippets Groups Projects
Commit 253764e3 authored by michele's avatar michele
Browse files

Bugfix: using addPeaks repeatedly works as designed now (doesn't overwrite old...

Bugfix: using addPeaks repeatedly works as designed now (doesn't overwrite old additionalPeaks anymore)
parent e100c2db
No related branches found
No related tags found
No related merge requests found
......@@ -210,7 +210,7 @@ mbWorkflow <- function(mb, steps=c(1,2,3,4,5,6,7,8), infolist_path="./infolist.c
function(r, refiltered) {
message(paste("Compiling: ", r$name, sep=""))
mbdata <- mb@mbdata_relisted[[which(mb@mbdata_archive$id == as.numeric(r$id))]]
if(ncol(mb@additionalPeaks) > 0)
if(nrow(mb@additionalPeaks) > 0)
res <-compileRecord(r, mbdata, refiltered, mb@additionalPeaks)
else
res <-compileRecord(r, mbdata, refiltered, NULL)
......@@ -1543,7 +1543,7 @@ addPeaks <- function(mb, filename_or_dataframe)
else
df <- read.csv(filename_or_dataframe)
culled_df <- df[,c("cpdID", "scan", "mzFound", "int", "OK")]
if(ncol(mb@additionalPeaks) > 0)
if(nrow(mb@additionalPeaks) == 0)
mb@additionalPeaks <- culled_df
else
mb@additionalPeaks <- rbind(mb@additionalPeaks, culled_df)
......
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