You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for the great tools for gRNA design! I had a problem with DeepSpCas9 on-target scoring. The function addOnTargetScores(guideSet, methods = c("deepspcas9")) gave this error:
Traceback (most recent call last):
File "/disk1/domelchenko/projects/gRNA_DB_Bnapus/renv/library/linux-ubuntu-jammy/R-4.4/x86_64-pc-linux-gnu/crisprScore/python/deepspcas9/getDeepSpCas9Scores.py", line 8, in <module>
import tensorflow as tf
File "/home/d_omelchenko/.cache/R/basilisk/1.18.0/crisprScore/1.10.0/deepspcas9__basilisk/lib/python2.7/site-packages/tensorflow/__init__.py", line 24, in <module>
from tensorflow.python import *
File "/home/d_omelchenko/.cache/R/basilisk/1.18.0/crisprScore/1.10.0/deepspcas9__basilisk/lib/python2.7/site-packages/tensorflow/python/__init__.py", line 47, in <module>
import numpy as np
File "/home/d_omelchenko/.cache/R/basilisk/1.18.0/crisprScore/1.10.0/deepspcas9__basilisk/lib/python2.7/site-packages/numpy/__init__.py", line 142, in <module>
from . import add_newdocs
File "/home/d_omelchenko/.cache/R/basilisk/1.18.0/crisprScore/1.10.0/deepspcas9__basilisk/lib/python2.7/site-packages/numpy/add_newdocs.py", line 13, in <module>
from numpy.lib import add_newdoc
File "/home/d_omelchenko/.cache/R/basilisk/1.18.0/crisprScore/1.10.0/deepspcas9__basilisk/lib/python2.7/site-packages/numpy/lib/__init__.py", line 8, in <module>
from .type_check import *
File "/home/d_omelchenko/.cache/R/basilisk/1.18.0/crisprScore/1.10.0/deepspcas9__basilisk/lib/python2.7/site-packages/numpy/lib/type_check.py", line 11, in <module>
import numpy.core.numeric as _nx
File "/home/d_omelchenko/.cache/R/basilisk/1.18.0/crisprScore/1.10.0/deepspcas9__basilisk/lib/python2.7/site-packages/numpy/core/__init__.py", line 26, in <module>
raise ImportError(msg)
ImportError:
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
If you're working with a numpy git repo, try `git clean -xdf` (removes all
files not under version control). Otherwise reinstall numpy.
Original error was: libgfortran.so.3: cannot open shared object file: No such file or directory
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") :
cannot open file '/tmp/Rtmpq0zQDQ/output.txt': No such file or directory
In case anyone else encounters this error, the solution was to install libgcc=7.2.0 in the deepspcas9__basilisk conda environment to change libgfortran.so.5 to libgfortran.so.3 in the libs directory.
Hi, thanks for the great tools for gRNA design! I had a problem with DeepSpCas9 on-target scoring. The function addOnTargetScores(guideSet, methods = c("deepspcas9")) gave this error:
In case anyone else encounters this error, the solution was to install libgcc=7.2.0 in the deepspcas9__basilisk conda environment to change libgfortran.so.5 to libgfortran.so.3 in the libs directory.
Perhaps the
libgcc=7.2.0
specification should be added to thedeepspcas9_dependencies
in the basilisk.R file.The text was updated successfully, but these errors were encountered: