-
Notifications
You must be signed in to change notification settings - Fork 5
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
Run MPRAsnakeflow without internet #164
Comments
Hi Zheng zhuqing, Yes, I think it is possible. The solution I write here requires snakemake on your system. Right now theer exists no all-in-one container. But this will be available at some point (I guess mid of this year). SOLUTION: The most problematic part is to install the conda envs which is not possible without internet access. But there is the option using the pre-build docker container of all environments using apptainer. The most difficult part is to safe the container at the right position on the system using the corrected (hashed) filename snakemake needs. You can use this few lines of code to download the image using te correct name on a system with internet access (use the version that you want to use): VERSION="0.4.2";
URL="docker://visze/mprasnakeflow:${VERSION}";
IMAGE_NAME=`echo -n "${URL}" | md5sum | awk '{print $1".simg"}'`
singularity pull --name $IMAGE_NAME $URL Then you have to copy it to your system, e.g.
E.g. something like
If you are able to run it with this approach I will update the documentation accordingly. Cross fingers that it works! |
Dear @visze I apologize for not being able to test sooner. Over the past couple of days, I have followed your suggestions for testing, but I encountered the following error. I wanted to check if you have faced any similar issues. Thank you for your assistance.
Best regards |
Mhh.. I think I saw this error before. Maybe when I run the command using @delangeni Can you test this locally on your end and see if you can get the same error? |
Dear all,
My server cannot connect to the internet, and only the administrator has permission to help install tools that require an internet connection. If I want to install
MPRAsnakeflow
locally through the administrator, is there any relevant documentation or instructions available?Thank you very much.
Best wishes,
Zheng zhuqing
The text was updated successfully, but these errors were encountered: