Fixed bug in DAG plot color mapping.
This commit is contained in:
+1
-1
@@ -1036,7 +1036,7 @@ class PlotThresholder:
|
||||
|
||||
icnodes = ds.existing_identifiers('go-terms', self._map_ids)
|
||||
icindices = ds.get_indices('go-terms', icnodes)
|
||||
a = scipy.ravel(ds.asarray()[icindices])
|
||||
a = ds.asarray()[icindices].sum(1)
|
||||
|
||||
good = set(scipy.array(icnodes)[(a>=min) & (a<=max)])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user