[hg] galaxy 3569: require numpy before bx-python where numpy is ...
details: http://www.bx.psu.edu/hg/galaxy/rev/4906f2302c85 changeset: 3569:4906f2302c85 user: Nate Coraor <nate@bx.psu.edu> date: Fri Mar 26 14:14:40 2010 -0400 description: require numpy before bx-python where numpy is dependant diffstat: lib/galaxy/visualization/tracks/data/array_tree.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diffs (14 lines): diff -r 5bbd895570d4 -r 4906f2302c85 lib/galaxy/visualization/tracks/data/array_tree.py --- a/lib/galaxy/visualization/tracks/data/array_tree.py Fri Mar 26 12:37:20 2010 -0400 +++ b/lib/galaxy/visualization/tracks/data/array_tree.py Fri Mar 26 14:14:40 2010 -0400 @@ -2,7 +2,9 @@ Array tree data provider for the Galaxy track browser. """ -import pkg_resources; pkg_resources.require( "bx-python" ) +import pkg_resources +pkg_resources.require( "numpy" ) +pkg_resources.require( "bx-python" ) from bx.arrays.array_tree import FileArrayTreeDict from math import floor, ceil, log, pow
participants (1)
-
Greg Von Kuster