Skip to content
Snippets Groups Projects
Commit b0f2cb22 authored by ermueller's avatar ermueller
Browse files

Fixed a superfluous warning message relating to issue #72

parent aa846ad8
No related branches found
No related tags found
No related merge requests found
......@@ -1824,7 +1824,9 @@ filterPeaksMultiplicity <- function(peaks, formulacol, recalcBest = TRUE)
{
peaks <- cbind(peaks, data.frame(formulaMultiplicity=numeric()))
if(recalcBest){
warning("filterPeaksMultiplicity: All peaks have been filtered. The workflow can not be continued beyond this point.")
if(formulacol == formula){
warning("filterPeaksMultiplicity: All peaks have been filtered. The workflow can not be continued beyond this point.")
}
peaks$fM_factor <- as.factor(peaks$formulaMultiplicity)
return(peaks)
}
......
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