|
|
@@ -0,0 +1,23 @@
|
|
|
+use crate::{collection::pod5::FlowCellCase, config::Config, helpers::test_init};
|
|
|
+
|
|
|
+use super::dorado::Dorado;
|
|
|
+
|
|
|
+#[test]
|
|
|
+fn basecall_muxed() -> anyhow::Result<()> {
|
|
|
+ test_init();
|
|
|
+
|
|
|
+ Dorado::from_mux(vec![
|
|
|
+ FlowCellCase {
|
|
|
+ id: "LUCAS".to_string(),
|
|
|
+ time_point: "diag".to_string(),
|
|
|
+ barcode: "NB05".to_string(),
|
|
|
+ pod_dir: "/data/unarchived/mnt/banana-pool/run_data/20250224-AgC/LUCRO-DG-N05_LUCRO-MR-N06/20250224_1416_1E_PBA93892_9921ba67/pod5/".into(),
|
|
|
+ },
|
|
|
+ FlowCellCase {
|
|
|
+ id: "LUCAS".to_string(),
|
|
|
+ time_point: "mrd".to_string(),
|
|
|
+ barcode: "NB06".to_string(),
|
|
|
+ pod_dir: "/data/unarchived/mnt/banana-pool/run_data/20250224-AgC/LUCRO-DG-N05_LUCRO-MR-N06/20250224_1416_1E_PBA93892_9921ba67/pod5/".into(),
|
|
|
+ },
|
|
|
+ ], Config::default())
|
|
|
+}
|