memmap_fileuses the function tiff_reader with 3 arguments (filename, startingframe, num2read) and gives an error. Changing both instances (lines 33 & 60) of tiff_readerto bigread2solved the issue.
Thanks again! Bear in mind bigread2 assumes that all entries all are non-negative and if your data has negative entries it will not work very well. You can also use the read_file that also reads are formats.
memmap_file
uses the functiontiff_reader
with 3 arguments (filename, startingframe, num2read) and gives an error. Changing both instances (lines 33 & 60) oftiff_reader
tobigread2
solved the issue.