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

Updating News and Description files #57

Merged
merged 3 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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: msqrob2
Title: Robust statistical inference for quantitative LC-MS proteomics
Version: 1.11.1
Version: 1.11.2
Authors@R: c(
person(given = "Lieven",
family = "Clement",
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# msqrob 1.11.2

- Fixed issue related to levels of a ridge variable
- Fixed issue when fitting only one random effect

# msqrob 1.11.1

- Fixed issues related to reference class changes in the models
Expand Down
2 changes: 1 addition & 1 deletion R/msqrob.R
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ msqrobLmer <- function(y,
fixed <- model.matrix(nobars(formula), data = data)
data$fixed <- fixed
data$y <- as.matrix(y)
data <- data[!is.na(data$y), ]
data <- data[!is.na(data$y), , drop = FALSE]

#Checking reference class changes
#nonestimable_paramaters <- limma::nonEstimable(data$fixed)
Expand Down
Loading