I'm trying to follow the example of brain observatory ipython notebook.
However, I became stuck loading the nwb
file like below.
from allensdk.core.brain_observatory_cache import BrainObservatoryCache
boc = BrainObservatoryCache(manifest_file='boc/manifest.json')
data_set = boc.get_ophys_experiment_data(501940850) # problem here
So, I opened the nwb
file by HDFview.
All of the brain observatory nwb
files were not opened except for 502376461.nwb
.
It threw the following error:
IOError: Unable to open file (Truncated file: eof = 82280448, sblock->base_addr = 0, stored_eoa = 204046519)
When I tried to open the 502376461.nwb
in the ipython notebook example from allen, it worked!! But the others (501940850
, 503820068
...) failed like above.