Skip to content

Commit 4b0a307

Browse files
committed
output coordinates now saved as .coords instead of .txt
1 parent fd2ecda commit 4b0a307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sizepicker/picker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def filt(self,boxes,particles_metrics,stdthreshold,remove_edge):
416416
boxs_XYZ = boxs_ZYX[:,[2,1,0]]
417417

418418
# Write out coordinates as txt file
419-
with open(self.output/f"{self.name}_coords.txt", "w") as f:
419+
with open(self.output/f"{self.name}.coords", "w") as f:
420420
np.savetxt(f, boxs_XYZ, delimiter=' ', fmt='%s %s %s')
421421

422422
return boxs_XYZ

0 commit comments

Comments
 (0)