Skip to content

Commit

Permalink
Merge pull request #57 from StijnVandenbulcke/master
Browse files Browse the repository at this point in the history
Updating News and Description files
  • Loading branch information
StijnVandenbulcke authored Apr 25, 2024
2 parents a367242 + ebcf2e3 commit 7b2399d
Show file tree
Hide file tree
Showing 3 changed files with 7 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: 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

0 comments on commit 7b2399d

Please sign in to comment.