pingmapper 5.0.4__py3-none-any.whl → 5.0.6__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.
- pingmapper/__main__.py +1 -1
- pingmapper/class_portstarObj.py +2 -2
- pingmapper/class_sonObj_nadirgaptest.py +2335 -0
- pingmapper/version.py +1 -1
- {pingmapper-5.0.4.dist-info → pingmapper-5.0.6.dist-info}/METADATA +2 -2
- {pingmapper-5.0.4.dist-info → pingmapper-5.0.6.dist-info}/RECORD +10 -9
- {pingmapper-5.0.4.data → pingmapper-5.0.6.data}/data/pingmapper_config/default_params.json +0 -0
- {pingmapper-5.0.4.dist-info → pingmapper-5.0.6.dist-info}/WHEEL +0 -0
- {pingmapper-5.0.4.dist-info → pingmapper-5.0.6.dist-info}/licenses/LICENSE +0 -0
- {pingmapper-5.0.4.dist-info → pingmapper-5.0.6.dist-info}/top_level.txt +0 -0
pingmapper/__main__.py
CHANGED
pingmapper/class_portstarObj.py
CHANGED
|
@@ -2633,8 +2633,8 @@ class portstarObj(object):
|
|
|
2633
2633
|
inDirPort = os.path.join(self.port.projDir, self.port.beamName, 'rect_wcr')
|
|
2634
2634
|
inDirStar = os.path.join(self.star.projDir, self.star.beamName, 'rect_wcr')
|
|
2635
2635
|
else:
|
|
2636
|
-
inDirPort = os.path.join(self.port.projDir, self.beamName, 'rect_wcp')
|
|
2637
|
-
inDirStar = os.path.join(self.star.projDir, self.beamName, 'rect_wcp')
|
|
2636
|
+
inDirPort = os.path.join(self.port.projDir, self.port.beamName, 'rect_wcp')
|
|
2637
|
+
inDirStar = os.path.join(self.star.projDir, self.star.beamName, 'rect_wcp')
|
|
2638
2638
|
|
|
2639
2639
|
portFiles = glob(os.path.join(inDirPort, '*.tif'))
|
|
2640
2640
|
starFiles = glob(os.path.join(inDirStar, '*.tif'))
|