You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cran-comments.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
2
2
# Description
3
3
4
-
This update includes minor enhancements and bug fixes related to how string ids are handled in various functions.
4
+
This update includes minor enhancements and bug fixes related to how string ids are handled in various functions. It also now allows certain vignettes to not throw an error if openmx is not installed for older R versions. This should resolve r-oldrel-windows-x86_64 1.5.0 22.00 246.00 268.00 ERROR seen in the last CRAN check.
5
5
6
6
# Test Environments
7
7
8
8
1. Local OS: Windows 11 x64 (build 26220), R 4.5.2 (2025-10-31 ucrt)
if (!requireNamespace("EasyMx", quietly = TRUE)) {
154
+
print("Please install EasyMx to run the model fitting examples.")
155
+
} else {
112
156
run1 <- emxTwinModel(
113
157
model = "Cholesky",
114
158
relatedness = "RCoef",
@@ -118,11 +162,15 @@ run1 <- emxTwinModel(
118
162
)
119
163
120
164
summary(run1)
165
+
}
121
166
```
122
167
123
168
As you can see the model was unsuccessful because it was not identified. But when we add another group, so that the model is identified, the model now fits.
124
169
125
170
```{r}
171
+
if (!requireNamespace("EasyMx", quietly = TRUE)) {
172
+
print("Please install EasyMx to run the model fitting examples.")
0 commit comments