From edb3562722272985a3105030157920a16fe461f1 Mon Sep 17 00:00:00 2001
From: Michiel Cottaar <michiel.cottaar@ndcn.ox.ac.uk>
Date: Mon, 25 Mar 2024 16:25:38 +0000
Subject: [PATCH] Clarify failed pathway message

---
 src/pathways.jl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/pathways.jl b/src/pathways.jl
index 81557a4..ed08660 100644
--- a/src/pathways.jl
+++ b/src/pathways.jl
@@ -285,6 +285,7 @@ The function should return `true` if the `Pathway` has reached its end (i.e., th
 function walk_pathway!(seq::Sequence, walker::PathwayWalker, pulse_effects::Vector{Symbol}, nreadout::Ref{Int}) 
     current_TR = 0
     nwait = length(pulse_effects) + nreadout[]
+    println("processing")
     while !(walk_pathway!(seq, walker, pulse_effects, nreadout, current_TR * TR(seq)))
         new_nwait = length(pulse_effects) + nreadout[]
         if nwait == new_nwait
-- 
GitLab