Skip to content

Commit

Permalink
Fixed bad check in importTrait
Browse files Browse the repository at this point in the history
  • Loading branch information
gaynorr committed Oct 19, 2022
1 parent 934e36f commit 59bcd45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ vignettes/*.pdf
Notes.txt
.Rproj.user/
docs
.DS_Store
2 changes: 1 addition & 1 deletion R/Class-SimParam.R
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ SimParam = R6Class(
useDom = TRUE
domEff = as.matrix(domEff)
stopifnot(nrow(addEff)==nrow(domEff),
ncol(addEff)==nrow(domEff))
ncol(addEff)==ncol(domEff))
}

# Prepare the intercept
Expand Down

0 comments on commit 59bcd45

Please sign in to comment.