From d4a3bb7a2d00c7297c7a28f69eba6e0664baabd9 Mon Sep 17 00:00:00 2001 From: Genevieve Buckley <30920819+GenevieveBuckley@users.noreply.github.com> Date: Fri, 18 Mar 2022 18:25:55 +1100 Subject: [PATCH] Update bioformats documentation to avoid ImportError --- doc/source/bioformats.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/bioformats.rst b/doc/source/bioformats.rst index 447d18d..8e25cb7 100644 --- a/doc/source/bioformats.rst +++ b/doc/source/bioformats.rst @@ -44,7 +44,7 @@ switches between them: .. code-block:: python # open a multi-experiment file and read the first experiment - reader = pims.BioformatsReader('path/to/file', series=0) + reader = pims.bioformats.BioformatsReader('path/to/file', series=0) # switch to the third experiment reader.series = 2 @@ -53,7 +53,7 @@ open a file with for instance 1 GB of java memory: .. code-block:: python - reader = BioformatsReader('path/to/file', java_memory='1024m') + reader = pims.bioformats.BioformatsReader('path/to/file', java_memory='1024m') Metadata --------