-
Notifications
You must be signed in to change notification settings - Fork 9
Description
Hey guys,
I've setup a conda system to use BionanoAnalyst: the env was setup with python 2.7.3 and I had problems to install PySide, which I ended up doing with 'conda install --name py273 -c terradue pyqt4'
But then, I had a compatibility problem as I tried to start the program python App.py and got:
ImportError: /home/muliano/anaconda3/envs/py273/lib/python2.7/site-packages/PySide/../../../libshiboken-python2.7.so.1.2: undefined symbol: _PyTrash_thread_destroy_chain
So, I installed another version of pyqt: conda install --name py273 -c anaconda pyqt=4.11.4
and then it worked. But once I tried to run the example data I got:
Traceback (most recent call last):
File "App.py", line 701, in analyse
self.running.getDetail()
File "/home/muliano/script/BioNanoAnalyst/scripts/Analysis.py", line 215, in getDetail
pairwise = np.concatenate((pairwise, q.get()),axis=0)
File "/home/muliano/anaconda3/envs/py273/lib/python2.7/multiprocessing/queues.py", line 117, in get
res = self._recv()
IOError: [Errno 4] Interrupted system call
So really don't know how to proceed from here. Is it a pyqt and python2.7.3 compatibility problem?
Another question is: would it be enough to open a 3.5Gb mammal assembly with a local computer with 30GbRAM and 4 CPUs?
Thanks guys!