-
Notifications
You must be signed in to change notification settings - Fork 10
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
Canot get ximmer to run on Ubuntu 16.04 #11
Comments
Hmm, I am guessing that the version of R that is default with Ubuntu 14.0.4 is actually that old, and perhaps what has happened is the libraries we depend on are no longer supported with that version of R. I've created a branch where I've added instructions to the docker build to get R from the CRAN respositories rather than default Ubuntu repos. Could you give it a try? eg:
Then run the docker build as normal and see if that helps. NB: You can see some alternate install instructions here which get everything running by manually installing from scratch on Ubuntu 16.0.4: http://ssadedin.github.io/ximmer/example.html This may help if you encounter other issues. |
Thank you for the quick reply! Unfortunately, this still doesn't work. The command
And installing without docker, following the instructions of the link you posted fails with:
And, after
Thank you again for your help, but I think I will need to forgo ximmer and go back to trying to get individual tools to run manually. |
Sorry to hear that - thanks for mentioning the bpipe version part, leaves me wondering how my local docker install worked. I will make a completely clean setup so I can get this working - hope you might be willing to check back in a few days once it's ironed out, as I definitely want a clean, working docker install. |
Just wanted to follow up: I've done a complete revamp of the Docker container, as there were a couple of other issues. If you're up for another try it would be great to get your feedback. As a note, the instructions for building the docker image have also changed in that you now should run directly from the Ximmer main directory rather than inside the git clone https://github.com/ssadedin/ximmer.git
cd ximmer
docker build -t ximmer . |
Thanks for taking the time! I will try and test it in the next few days and let you know. |
I finally found the time to test this again. I tried running with:
It now fails with:
I tried setting JAVA_HOME on launch:
But that made no difference. Neither did running I see that the log output has this line, however:
|
I am having similar/same problem.
fails with:
I have tried to set JAVA_HOME path in the dockerfile (as stated in docker recommendation for ENV). Maybe ximmer is not referring to the dockerfile ???? The problem occuring in mac OS and in Windows 10 using build in terminals or docker's CLI. |
I have been trying (and failing) to run ximmer on an Ubuntu 16.04 LTS server for a few days now. I couldn't get the two CNV callers I tried (connifer and exomedepth) to work natively because of various issues so I turned to the docker image. I built with:
And launch with:
This fails with:
I assume this means I need to install
VariantAnnotation
in the docker image, so I ran:However, this fails with:
I thought I'd try installing
AnnotationDbi
manually, but the R version in the docker image is 2.02, quite old, so that fails with:So, questions:
apt-get install -y r-base
, so why is it bringing such an old version? Is the apt in the docker image configured to use the Ubuntu 14.04 repos? Can that be changed?The text was updated successfully, but these errors were encountered: