Skip to content

Commit

Permalink
fix partial arg match - close issue #125
Browse files Browse the repository at this point in the history
  • Loading branch information
lgatto committed Mar 18, 2024
1 parent 5a83ebe commit 2fcc064
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: MsCoreUtils
Title: Core Utils for Mass Spectrometry Data
Version: 1.15.4
Version: 1.15.5
Description: MsCoreUtils defines low-level functions for mass
spectrometry data and is independent of any high-level data
structures. These functions include mass spectra processing
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## MsCoreUtils 1.15.4

- Fix partial argument match (see issue #125).

## MsCoreUtils 1.15.4

- Fix documentation of `ndotproduct`.

## MsCoreUtils 1.15.3
Expand Down
2 changes: 1 addition & 1 deletion R/rbindFill.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ rbindFill <- function(...) {
allnms <- unique(names(allcl))
allcl <- allcl[allnms]

for (i in seq(along=l)) {
for (i in seq(along.with = l)) {
diffcn <- setdiff(allnms, names(l[[i]]))
if (length(diffcn))
l[[i]][, diffcn] <- lapply(allcl[diffcn], as, object = NA)
Expand Down

0 comments on commit 2fcc064

Please sign in to comment.