From 6b12335bbca52b573796475ea179896e43916d63 Mon Sep 17 00:00:00 2001 From: Emilia Date: Sat, 13 May 2023 15:21:05 -0400 Subject: [PATCH] Modify comments in validation --- src/data/transfer_region.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/transfer_region.rs b/src/data/transfer_region.rs index bb5907b..c286a4d 100644 --- a/src/data/transfer_region.rs +++ b/src/data/transfer_region.rs @@ -114,7 +114,6 @@ impl TransferRegion<'_> { // // We check: // - Are the wells in the source really there? - // - Are the wells in the destination there? (Sometimes running OOB is okay though?) // - In a replication region, do the source lengths divide the destination lengths? // - Are the interleaves valid? let il_source = self.interleave_source.unwrap_or((1,1)); @@ -180,6 +179,8 @@ impl TransferRegion<'_> { // Check if all destination wells exist: // NOT IMPLEMENTED + // Should *not* happen in this function---otherwise + // we'd get a nasty recursive loop. return Ok(())