You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running terminationripples, it raises error ideal_peaks = Peaks([pf1.createpeak(p, "pwa") for p in pars]) ^^^^^^^^^^^^^^ AttributeError: 'GaussianOverR' object has no attribute 'createpeak'
The text was updated successfully, but these errors were encountered:
I believe all calls to createpeak() should be replaced by calls to actualize() . They all occur in very, very old tests that I evidently stopped running before this name change. (No doubt, this was sloppy of me.) The files are:
baselines/base.py
peaks/terminationripples.py
peaks/gaussian.py
peaks/gaussianoverr.py
Note that throughout the code, all test code in blocks like if __name__ == '__main__': are not vital to the functioning of SrMise itself. In the end most of these should probably be removed as proper tests are written.
When running terminationripples, it raises error
ideal_peaks = Peaks([pf1.createpeak(p, "pwa") for p in pars])
^^^^^^^^^^^^^^
AttributeError: 'GaussianOverR' object has no attribute 'createpeak'
The text was updated successfully, but these errors were encountered: