Skip to content

Commit

Permalink
feat(derive/instrument): more debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
a-frantz committed Feb 12, 2024
1 parent 4225ec0 commit 780d3bc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/derive/instrument/compute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 780d3bc

Please sign in to comment.