Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions syncropatch_export/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,16 @@ def get_onboard_QC_values(self, sweeps=None):
"""
Return the quality control values Rseal, Cslow (Cm), and Rseries.

Args:
sweeps (list): A list of sweep indexes to return, e.g.
``[0, 1, 2]``. If left at its default value ``None``, data for all
sweeps will be returned.

Returns:
A dict mapping well names ('A01' up to 'P24') to tuples
``(R_seal, Cm, R_series)`` containing the seal resistance, membrane
capacitance, and series resistance.
A dict mapping well names ('A01' up to 'P24') to lists of tuples
(one tuple per sweep), where each tuple ``(R_seal, Cm, R_series)``
provides the seal resistance, membrane capacitance, and series
resistance.

"""

Expand Down