From fcbfcd6c20f31317d1b599a4b864382afdd32910 Mon Sep 17 00:00:00 2001 From: Mike Phares Date: Wed, 23 Apr 2025 13:46:54 -0700 Subject: [PATCH] Skip BioRad4 and BioRad5 --- Adaptation/FileHandlers/QS408M/Run.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Adaptation/FileHandlers/QS408M/Run.cs b/Adaptation/FileHandlers/QS408M/Run.cs index ca6f51e..b3c3950 100644 --- a/Adaptation/FileHandlers/QS408M/Run.cs +++ b/Adaptation/FileHandlers/QS408M/Run.cs @@ -159,8 +159,11 @@ internal class Run else { result = new(header, sites, body, footer); - WriteJson(logistics, fileInfoCollection, result); - WriteCommaSeparatedValues(logistics, result); + if (logistics.JobID is not "BIORAD4" and not "BIORAD5") + { + WriteJson(logistics, fileInfoCollection, result); + WriteCommaSeparatedValues(logistics, result); + } } } }