diff --git a/apps/nar-v3/src/components/CellPatchingCard.jsx b/apps/nar-v3/src/components/CellPatchingCard.jsx index aa9fd9c..bdf29ab 100644 --- a/apps/nar-v3/src/components/CellPatchingCard.jsx +++ b/apps/nar-v3/src/components/CellPatchingCard.jsx @@ -49,6 +49,7 @@ function CellPatchingCard(props) { "Seal resistance": formatQuantList(activity.device[0].sealResistance), "Series resistance": formatQuantList(activity.device[0].seriesResistance), "Holding potential": formatQuantList(activity.device[0].holdingPotential), + "Liquid junction potential correction": formatQuantList(activity.device[0].liquidJunctionPotential), "Bath solution": formatSolution(activity.tissueBathSolution), "Bath temperature": formatQuant(activity.bathTemperature), }; diff --git a/apps/nar-v3/src/routes/queryLibrary.js b/apps/nar-v3/src/routes/queryLibrary.js index 9e6c8a8..2083b5e 100644 --- a/apps/nar-v3/src/routes/queryLibrary.js +++ b/apps/nar-v3/src/routes/queryLibrary.js @@ -228,6 +228,7 @@ const patchClampDatasetQuery = buildKGQuery("core/DatasetVersion", [ L("sealResistance", [L("value", quantValProperties, MULTIPLE)]), L("seriesResistance", [L("value", quantValProperties, MULTIPLE)]), L("holdingPotential", [L("value", quantValProperties, MULTIPLE)]), + L("liquidJunctionPotential", [L("value", quantValProperties, MULTIPLE)]), ], MULTIPLE ), diff --git a/apps/nar-v3/tmp/build_query.py b/apps/nar-v3/tmp/build_query.py index 1f59663..b798dd0 100644 --- a/apps/nar-v3/tmp/build_query.py +++ b/apps/nar-v3/tmp/build_query.py @@ -384,6 +384,34 @@ ) ], ), + QP( + f"{vocab}liquidJunctionPotential", + name="liquidJunctionPotential", + expect_single=True, + properties=[ + QP( + f"{vocab}value", + name="values", + properties=[ + QP( + f"{vocab}value", + name="value", + ), + QP( + f"{vocab}unit", + name="units", + expect_single=True, + properties=[ + QP( + f"{vocab}name", + name="name", + ) + ], + ), + ], + ) + ], + ), ], ), Q_tissue_bath_solution,