Skip to content

Commit

Permalink
Update README.md about biarch
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimonen committed Oct 9, 2023
1 parent 6c06b5e commit 803a85d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ See overview, tutorials, vignettes and documentation at https://jtimonen.github.

## Requirements
* The package should work on all major operating systems.
* R 3.4 or later is required, R 4.0.2 or later is recommended
* R 3.4 or later is required, R 4.2 or later is recommended

## Installing from CRAN
* The latest released version that is available from CRAN can be installed simply via
Expand Down Expand Up @@ -41,6 +41,20 @@ See the instructions for:
- [Windows](https://github.com/stan-dev/rstan/wiki/Configuring-C---Toolchain-for-Windows)
- [Mac](https://github.com/stan-dev/rstan/wiki/Configuring-C---Toolchain-for-Mac)

## Using R < 4.2

If you are using `R` version 4.1 or earlier, you can get an error
```
cc1plus.exe: out of memory allocating 65536 bytes
make: *** [C:/PROGRA~1/R/R-40~1.2/etc/i386/Makeconf:227: stanExports_lgp_latent.o] Error 1
```
because both 64-bit and 32-bit versions of the package are getting installed. To disable this and resolve error,
ugrade to latest R or install the version that has `Biarch: false` by

```r
devtools::install_github('jtimonen/lgpr', ref = "no-biarch")
```

## Real data and reproducing the experiments
For code to reproduce the experiments of our manuscript see https://github.com/jtimonen/lgpr-usage. Preprocessed longitudinal proteomics
data is also provided there. See also the built-in `read_proteomics_data()` function.

0 comments on commit 803a85d

Please sign in to comment.