Closed vladsavelyev closed 6 years ago
Figured out the cannot allocate memory issue
:) Should have re-created the docker machine with a higher memory limit: docker-machine create default --driver virtualbox --virtualbox-memory 4096
I guess I figured the difference between the local and the dockerized environments: the code for MSI calculations might be different, because for another sample, the dockerized instance reports 0.057:
2018-05-10 08:15:47 [INFO] Predicting microsatellite instability status
2018-05-10 08:15:47 [INFO] n = 43 coding variants used for MSI prediction
2018-05-10 08:15:53 [INFO] Predicted MSI status: MSS (Microsatellite stable)
2018-05-10 08:15:53 [INFO] MSI - Indel fraction: 0.057
Whereas the local one reports 0.165:
2018-05-10 18:27:42 [INFO] Predicting microsatellite instability status
2018-05-10 18:27:50 [INFO] Predicted MSI status: MSI.H (Microsatellite instability - high)
2018-05-10 18:27:50 [INFO] MSI - Indel fraction: 0.165
I'm not sure what I did, but now it seem to produce identical result and no longer fails with the original error. All good!
Hi Sigve,
Thanks a lot for pushing the new release with all the fixes!
I'm running into another one unfortunately.
pcgr.R
fails with the following error:Example VCF and TOML are attached below: test_saveliev.tar.gz
In fact I'm having this error when running pcgr.R outside of the docker. The dockerized one failures with "cannot allocated memory" for some reason regardless how much memory I allocate:
So the error in fact might even originate from an unexpected dependency version on my local machine versus the docker image. So might be just might fault. Will explore on this a bit more, but if you can try out this example and share your thoughts, it would be great!
Vlad