20 Nov
2010
20 Nov
'10
9:23 a.m.
# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User jeremy goecks <jeremy.goecks@emory.edu> # Date 1289785639 18000 # Node ID 47d6c393f4cf9562e4e3e10211389f84bf0a2f24 # Parent fd4a22ba5b57a48a2bed45333c2dfddaec61c359 Add necessary import statement to gff_util module. --- a/lib/galaxy/datatypes/util/gff_util.py +++ b/lib/galaxy/datatypes/util/gff_util.py @@ -1,7 +1,7 @@ """ Provides utilities for working with GFF files. """ - +import pkg_resources; pkg_resources.require( "bx-python" ) from bx.intervals.io import * class GFFInterval( GenomicInterval ):