-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug in big_tcrossprodSelf: backingfile option missing #149
Comments
Yes, that's mentioned at #73. This is not really hard to implement, so I was waiting for someone else to do it. |
In the latest GitHub version, I have just added a global option |
Does this workaround work you? |
Yes thanks, you may close this topic! |
You may too :') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the big_tcrossprodSelf, the backingfile option is missing. This then results in the following error:
"Error: Not enough disk space to create '/tmp/Rtmp8o1xcA/file209cd5efd38c5.bk'.".
This is because in https://github.com/privefl/bigstatsr/blob/master/R/tcrossprodSelf.R, at this line:
K <- FBM(n, n, init = 0)
you try to create the backingfile at the default location , which then points to some place where I do not have permissions/enough space and there is no way to change this.
This function needs to let the user supply their own temporary directory location like for most other similar functions, so that this won't happen.
The text was updated successfully, but these errors were encountered: