Skip to content

Commit

Permalink
Merge pull request #399 from sanger/new_bs
Browse files Browse the repository at this point in the history
x1196 Accept new bio state "Library post-clean 1:20 dilution"
  • Loading branch information
khelwood committed May 8, 2024
2 parents b75d9d2 + 1acd428 commit 3b9d38a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ public class SlotCopyServiceImp implements SlotCopyService {

static final String BS_PROBES = "Probes", BS_CDNA = "cDNA", BS_LIBRARY = "Library",
BS_LIB_PRE_CLEAN = "Library pre-clean", BS_LIB_POST_CLEAN = "Library post-clean",
BS_PROBES_PRE_CLEAN = "Probes pre-clean", BS_PROBES_POST_CLEAN = "Probes post-clean";
BS_PROBES_PRE_CLEAN = "Probes pre-clean", BS_PROBES_POST_CLEAN = "Probes post-clean",
BS_LIB_POST_CLEAN_1_20 = "Library post-clean 1:20 dilution";

static final Set<String> VALID_BS_UPPER = Stream.of(
BS_PROBES, BS_CDNA, BS_LIBRARY, BS_LIB_PRE_CLEAN, BS_LIB_POST_CLEAN,
BS_PROBES_PRE_CLEAN, BS_PROBES_POST_CLEAN
BS_PROBES_PRE_CLEAN, BS_PROBES_POST_CLEAN, BS_LIB_POST_CLEAN_1_20
).map(String::toUpperCase)
.collect(toSet());

Expand Down

0 comments on commit 3b9d38a

Please sign in to comment.