in the middle of p. 24 of the standard reference work "Python and HDF5" by Andrew Collette he suddenly switches to a new notation using square brackets:
>>> with h5py.File('big1.hdf5', 'w') as f1:
... f1['big'] = bigdata
I assume that this new notation is somewhere defined in the NumPy literature, but where?
Also the biotechnology company 10X Genomics has made available on the web sample code for processing the HDF5 files produced by its software supporting their single cell RNA-seq hardware platform, which uses a more elaborate notation, e.g.:
f['matrix'] ['features']['id']
Unfortunately due to rapid technological advances they regard this sample code as technically obsolete and therefore unsupported, even though it applies to experimental data on Covid-19 infections which has been publicly deposited in just the last couple of months. Please note that my immediate problem is just trying to understand the programming notation, not the 10X Genomics technology.
Any help would be greatly appreciated!