Skip to content
Snippets Groups Projects
Commit f7da0634 authored by Unknown's avatar Unknown Committed by unknown
Browse files

Ensure _max_pos_per_read is integer

parent a12fe9bc
No related branches found
No related tags found
1 merge request!111Cades dev
......@@ -306,7 +306,7 @@ class BESHOmodel(Model):
self._max_pos_per_read = int(np.floor(self._maxDataChunk / mb_per_position))
if self._parallel:
self._max_pos_per_read /= 2
self._max_pos_per_read = int(self._max_pos_per_read / 2)
self._create_guess_datasets()
self._start_pos = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment