rapidtide 3.0.3__py3-none-any.whl → 3.0.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rapidtide/RapidtideDataset.py +2 -0
- rapidtide/_version.py +20 -682
- rapidtide/io.py +10 -3
- rapidtide/tests/test_fullrunrapidtide_v1.py +0 -2
- rapidtide/tests/test_getparsers.py +140 -0
- rapidtide/tests/test_parserfuncs.py +70 -0
- rapidtide/tests/test_zRapidtideDataset.py +2 -0
- rapidtide/workflows/rapidtide.py +8 -2
- rapidtide/workflows/rapidtide2std.py +2 -0
- rapidtide/workflows/rapidtide_parser.py +2 -2
- rapidtide/workflows/retroregress.py +22 -9
- rapidtide/workflows/simdata.py +17 -23
- rapidtide/workflows/tidepool.py +6 -0
- {rapidtide-3.0.3.dist-info → rapidtide-3.0.5.dist-info}/METADATA +1 -1
- {rapidtide-3.0.3.dist-info → rapidtide-3.0.5.dist-info}/RECORD +19 -17
- {rapidtide-3.0.3.dist-info → rapidtide-3.0.5.dist-info}/WHEEL +0 -0
- {rapidtide-3.0.3.dist-info → rapidtide-3.0.5.dist-info}/entry_points.txt +0 -0
- {rapidtide-3.0.3.dist-info → rapidtide-3.0.5.dist-info}/licenses/LICENSE +0 -0
- {rapidtide-3.0.3.dist-info → rapidtide-3.0.5.dist-info}/top_level.txt +0 -0
rapidtide/RapidtideDataset.py
CHANGED
|
@@ -276,6 +276,7 @@ class Overlay:
|
|
|
276
276
|
label=newlabel,
|
|
277
277
|
report=self.report,
|
|
278
278
|
init_LUT=init_LUT,
|
|
279
|
+
verbose=self.verbose,
|
|
279
280
|
)
|
|
280
281
|
|
|
281
282
|
def updateStats(self):
|
|
@@ -1145,6 +1146,7 @@ class RapidtideDataset:
|
|
|
1145
1146
|
["lagtimesrefined", "desc-maxtimerefined_map"],
|
|
1146
1147
|
["timepercentile", "desc-timepercentile_map"],
|
|
1147
1148
|
["lagstrengths", "desc-maxcorr_map"],
|
|
1149
|
+
["lagstrengthsrefined", "desc-maxcorrrefined_map"],
|
|
1148
1150
|
["lagsigma", "desc-maxwidth_map"],
|
|
1149
1151
|
["MTT", "desc-MTT_map"],
|
|
1150
1152
|
["R2", "desc-lfofilterR2_map"],
|