When merging cell seg files written with comma as the decimal separator, the merge addin will sometimes delete the comma. This changes e.g. '14835,9' to '148359' which obviously corrupts the data.
The underlying cause is the behavior of readr::parse_guess() which strips out commas unless there is a leading zero before it.
When merging cell seg files written with comma as the decimal separator, the merge addin will sometimes delete the comma. This changes e.g. '14835,9' to '148359' which obviously corrupts the data.
The underlying cause is the behavior of
readr::parse_guess()
which strips out commas unless there is a leading zero before it.