We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9af8af1 + 87cad31 commit e5ec8a1Copy full SHA for e5ec8a1
pcpostprocess/scripts/run_herg_qc.py
@@ -314,6 +314,15 @@ def main():
314
passed_QC_Erev_spread = E_rev_spread <= args.reversal_spread_threshold
315
logging.info(f"passed_QC_Erev_spread {passed_QC_Erev_spread}")
316
317
+ # R_leftover only considered for protocols used for QC (i.e. staircase protocols)
318
+ passed_QC_R_leftover = np.all(sub_df[sub_df.protocol.isin(args.D2SQC.values())]
319
+ ["QC.R_leftover"].values
320
+ )
321
+
322
+ logging.info(f"passed_QC_R_leftover {passed_QC_R_leftover}")
323
324
+ passed_QC_Erev_spread = E_rev_spread <= args.reversal_spread_threshold
325
326
qc_erev_spread[well] = passed_QC_Erev_spread
327
erev_spreads[well] = E_rev_spread
328
0 commit comments