Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix partial arg match - close issue #125 #127

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)) {
lgatto marked this conversation as resolved.
Show resolved Hide resolved
diffcn <- setdiff(allnms, names(l[[i]]))
if (length(diffcn))
l[[i]][, diffcn] <- lapply(allcl[diffcn], as, object = NA)
Expand Down
Loading