[hg] galaxy 1642: Refix cleanup_dataset.py script.
details: http://www.bx.psu.edu/hg/galaxy/rev/499eed864ab3 changeset: 1642:499eed864ab3 user: Greg Von Kuster <greg@bx.psu.edu> date: Mon Dec 01 14:07:36 2008 -0500 description: Refix cleanup_dataset.py script. 1 file(s) affected in this change: scripts/cleanup_datasets/cleanup_datasets.py diffs (16 lines): diff -r e2e7c33f587d -r 499eed864ab3 scripts/cleanup_datasets/cleanup_datasets.py --- a/scripts/cleanup_datasets/cleanup_datasets.py Mon Dec 01 09:57:59 2008 -0500 +++ b/scripts/cleanup_datasets/cleanup_datasets.py Mon Dec 01 14:07:36 2008 -0500 @@ -8,6 +8,12 @@ new_path = [ os.path.join( os.getcwd(), "lib" ) ] new_path.extend( sys.path[1:] ) # remove scripts/ from the path sys.path = new_path + +from galaxy import eggs +import galaxy.model.mapping +import pkg_resources + +pkg_resources.require( "SQLAlchemy >= 0.4" ) from galaxy.model.orm import *
participants (1)
-
Nate Coraor