Closed wvictor14 closed 3 years ago
partially addresses #2
Linux is case sensitive whereas windows/mac are case-insensitive. Changing Data/
to data/
fixed this. Thanks for jim for the help..
https://github.com/r-lib/remotes/issues/560#event-4079708112
This allows installation on linux without errors. At least on ubuntu18.04.2 LTS (Bionic Beaver), R version 3.6.3
However, the data is not exported properly. For example,
data(pl_cell_cpgs_third)
results in an "object not found" message. Other objects are also not exported properly.Everything works fine on Windows and Mac though, AFAIK.
It seems that the problem has something to do with
sysdata.rda
. After removingnbeta
object fromsysdata.rda
this works. I had to exportnbeta
as an external object, however, which is not ideal. It shouldn't be available to the user since it's only used internally forpl_infer_ethnicity
.I suspect the problem has something to do with
nbeta
being a list, containing three objects of classdgCMatrix
. However, after converting these to normal matrices (which should still function properly withpl_infer_ethnicity
), there still is an install error. I have absolutely no idea what's going on :(So for now, this package is unusable on some linux installations.