# HG changeset patch # User melissacline # Date 1413251574 25200 # Node ID 6ca836b7e0b46dbd6d431dff53c3d13757396b39 # Parent 6f8ed2a7fd7ac7b2c661a0212d51e765eb1dfbf8 Changed the importing for stats.py diff -r 6f8ed2a7fd7a -r 6ca836b7e0b4 ttest/stats.py --- 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()