-
Notifications
You must be signed in to change notification settings - Fork 9
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
FileNotFoundError: [Errno 2] No such file or directory: '/xxx/pyramids' #44
Comments
Hi, It seems a similar error as the one here: Can you try changing the permissions before launching docker and providing the working directory to docker. The example of command is given in the comment of the previous issue. |
Oh, thank you very much, I missed this post. It worked but I encountered a second error after some steps: ... During handling of the above exception, another exception occurred: Traceback (most recent call last): which also looks like issue 24, but not completely. Thank you very much again for your help! |
Sorry, I forgot to answer you. |
Hi, I thank you again for your answer! I struggle a little with the versions of the programs and I think that somehow I made a mess with the nvidia driver, because now gives this error:
Here are informations on the nvidia driver and cuda installations:
Do you know what I did wrong here? Also, while the docker wasn't working, I managed to install the program locally but also got an error:
I noticed this error is reported elsewhere #34, #12 and from the little I understood, it might still be a pycuda version issue, but how do I chose the right version, check which one is running and change it? I used these commands to install pycuda:
Thanks again and sorry for my lack of understanding of the answers on previous posts! |
Hello,
I am trying to run instaGRAAL on a linux machine using docker with this command:
sudo docker run --gpus all koszullab/instagraal instagraal $OUT_HICSTUFF $ASSEMBLY $OUT_INSTA
It gave this error:
Traceback (most recent call last):
File "/usr/local/bin/instagraal", line 11, in
load_entry_point('instagraal', 'console_scripts', 'instagraal')()
File "/src/instagraal/instagraal/instagraal.py", line 1178, in main
output_folder=output_folder,
File "/src/instagraal/instagraal/instagraal.py", line 160, in init
output_folder=output_folder,
File "/src/instagraal/instagraal/simu_single.py", line 74, in init
self.select_data_set(name)
File "/src/instagraal/instagraal/simu_single.py", line 743, in select_data_set
thresh_factor=self.thresh_factor,
File "/src/instagraal/instagraal/pyramid_sparse.py", line 58, in build_and_filter
os.mkdir(all_pyramid_folder)
FileNotFoundError: [Errno 2] No such file or directory: '/xxx/pyramids'
I found this other issue #24 which seems similar, but with singularity, and attempted to reproduce the proposed solution in docker using "-v $PWD:/data" (instead of -B $PWD:/data), but obtained the same error.
The HiC matrix is produced from Hicstuff and the assembly is a fasta file (from wtdbg2).
Thanks in advance for any help and sorry if I didn't include sufficient information.
Best regards
The text was updated successfully, but these errors were encountered: