changeset 6:6ca836b7e0b4

Changed the importing for stats.py
author melissacline
date Mon, 13 Oct 2014 18:52:54 -0700
parents 6f8ed2a7fd7a
children 14c406f8fca6
files ttest/stats.py
diffstat 1 files changed, 3 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/ttest/stats.py	Mon Oct 13 18:06:43 2014 -0700
+++ b/ttest/stats.py	Mon Oct 13 18:52:54 2014 -0700
@@ -6,19 +6,9 @@
 import math
 import re
 import sys
-try:
-    import numpy
-except:
-    from galaxy import eggs
-    eggs.require("numpy")
-    import numpy
-try:
-    import scipy
-except:
-    from galaxy import eggs
-    eggs.require( "scipy" )
-    import scipy
-    import scipy.stats
+import numpy
+import scipy
+import scipy.stats
 
 def main():
     parser = argparse.ArgumentParser()