Dear programmer, sorry to interrupt you but, I have a problem with a large gene interaction network and its corresponding adjacency matrix. The error that occurs is the following:
Traceback (most recent call last):
File "/home/pyNBS/network_propagation.py", line 14, in normalize_network
subgraph_norm = normalize_network(network, symmetric_norm=False)
File "/home/pyNBS/network_propagation.py", line 17, in normalize_network
tmp_dense = adj_mat.todense()
File "/home/anaconda2/lib/python2.7/site-packages/scipy/sparse/base.py", line 721, in todense
return np.asmatrix(self.toarray(order=order, out=out))
File "/home/anaconda2/lib/python2.7/site-packages/scipy/sparse/compressed.py", line 964, in toarray
return self.tocoo(copy=False).toarray(order=order, out=out)
File "/home/anaconda2/lib/python2.7/site-packages/scipy/sparse/coo.py", line 252, in toarray
B = self._process_toarray_args(order, out)
File "/home/anaconda2/lib/python2.7/site-packages/scipy/sparse/base.py", line 1039, in _process_toarray_args
return np.zeros(self.shape, dtype=self.dtype, order=order)
MemoryError
Using the commands:
print type(adj_mat)
print adj_mat.shape
I retrieved that the adj_mat is:
<class 'scipy.sparse.csr.csr_matrix'>
(119290, 119290)
The packages of interest are the following (attached there is the full list of packages):
packages_conda.txt
scipy 0.19.0 np112py27_0
numpy 1.12.1 py27_0
networkx 1.11 py27_0
I think that the matrix that should be returned by toDense() should require at least 113GB of memory that I do not have. In case it wouldn't be possible to solve the problem using at most 64GB of ram, should be possible to involve the space in the hard disk?
Dear programmer, sorry to interrupt you but, I have a problem with a large gene interaction network and its corresponding adjacency matrix. The error that occurs is the following:
Using the commands:
I retrieved that the adj_mat is:
The packages of interest are the following (attached there is the full list of packages):
packages_conda.txt
scipy 0.19.0 np112py27_0
numpy 1.12.1 py27_0
networkx 1.11 py27_0
I think that the matrix that should be returned by toDense() should require at least 113GB of memory that I do not have. In case it wouldn't be possible to solve the problem using at most 64GB of ram, should be possible to involve the space in the hard disk?