Skip to content

Commit

Permalink
links from ref to article
Browse files Browse the repository at this point in the history
  • Loading branch information
ecormany committed Nov 18, 2024
1 parent 0d9e1be commit 88b9317
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/docs/v2/modules/absorbance_plate_reader.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ You need to call ``close_lid()`` before initializing the reader, even if the rea
.. warning::
Do not move the lid manually, during or outside of a protocol. The API does not allow manual lid movement because there is a risk of damaging the module.

.. _absorbance-initialization:

Initialization
==============

Expand Down Expand Up @@ -131,6 +133,8 @@ You can write additional code to transform this data in any way that you need. F

[pr_data[450][w.well_name] for w in plate.columns()[0]]

.. _absorbance-csv:

CSV data
--------

Expand Down
4 changes: 4 additions & 0 deletions api/src/opentrons/protocol_api/module_contexts.py
Original file line number Diff line number Diff line change
Expand Up @@ -1022,6 +1022,8 @@ def initialize(
) -> None:
"""Prepare the Absorbance Plate Reader to read a plate.
See :ref:`absorbance-initialization` for examples.
:param mode: Either ``"single"`` or ``"multi"``.
- In single measurement mode, :py:meth:`.AbsorbanceReaderContext.read` uses
Expand Down Expand Up @@ -1074,6 +1076,8 @@ def read(
with ``export_filename="my_data"``, there will be two output files:
``my_data_450.csv`` and ``my_data_562.csv``.
See :ref:`absorbance-csv` for information on working with these CSV files.
:returns: A dictionary of wavelengths to dictionary of values ordered by well name.
"""
return self._core.read(filename=export_filename)

0 comments on commit 88b9317

Please sign in to comment.