Mercurial > repos > rv43 > tomo
comparison fit.py @ 75:d5e1d4ea2b7e draft default tip
planemo upload for repository https://github.com/rolfverberg/galaxytools commit 6afde341a94586fe3972bdbbfbf5dabd5e8dec69
author | rv43 |
---|---|
date | Thu, 23 Mar 2023 13:39:14 +0000 |
parents | 1cf15b61cd83 |
children |
comparison
equal
deleted
inserted
replaced
74:4f4ee8db5f67 | 75:d5e1d4ea2b7e |
---|---|
33 import xarray as xr | 33 import xarray as xr |
34 have_xarray = True | 34 have_xarray = True |
35 except: | 35 except: |
36 have_xarray = False | 36 have_xarray = False |
37 | 37 |
38 #try: | 38 try: |
39 # from .general import illegal_value, is_int, is_dict_series, is_index, index_nearest, \ | 39 from .general import illegal_value, is_int, is_dict_series, is_index, index_nearest, \ |
40 # almost_equal, quick_plot #, eval_expr | 40 almost_equal, quick_plot #, eval_expr |
41 #except: | 41 except: |
42 # try: | 42 try: |
43 # from sys import path as syspath | 43 from sys import path as syspath |
44 # syspath.append(f'/nfs/chess/user/rv43/msnctools/msnctools') | 44 syspath.append(f'/nfs/chess/user/rv43/msnctools/msnctools') |
45 # from general import illegal_value, is_int, is_dict_series, is_index, index_nearest, \ | 45 from general import illegal_value, is_int, is_dict_series, is_index, index_nearest, \ |
46 # almost_equal, quick_plot #, eval_expr | 46 almost_equal, quick_plot #, eval_expr |
47 # except: | 47 except: |
48 # from general import illegal_value, is_int, is_dict_series, is_index, index_nearest, \ | 48 from general import illegal_value, is_int, is_dict_series, is_index, index_nearest, \ |
49 # almost_equal, quick_plot #, eval_expr | 49 almost_equal, quick_plot #, eval_expr |
50 from general import illegal_value, is_int, is_dict_series, is_index, index_nearest, \ | |
51 almost_equal, quick_plot #, eval_expr | |
52 | 50 |
53 from sys import float_info | 51 from sys import float_info |
54 float_min = float_info.min | 52 float_min = float_info.min |
55 float_max = float_info.max | 53 float_max = float_info.max |
56 | 54 |