From 780d3bc090161749850df1983c7c9b5261bed716 Mon Sep 17 00:00:00 2001 From: Andrew Frantz Date: Mon, 12 Feb 2024 16:15:36 -0500 Subject: [PATCH] feat(derive/instrument): more debug statements --- src/derive/instrument/compute.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/derive/instrument/compute.rs b/src/derive/instrument/compute.rs index 8af7b9e..49b46ba 100644 --- a/src/derive/instrument/compute.rs +++ b/src/derive/instrument/compute.rs @@ -297,7 +297,16 @@ pub fn predict( let instruments = instruments::build_instrument_lookup_table(); let flowcells = flowcells::build_flowcell_lookup_table(); + debug!( + "Predicting instruments from instrument names: {:?}", + instrument_names + ); let iid_results = predict_instrument(instrument_names, &instruments); + + debug!( + "Predicting instruments from flowcell names: {:?}", + flowcell_names + ); let fcid_results = predict_instrument(flowcell_names, &flowcells); resolve_instrument_prediction(iid_results, fcid_results)