Skip to content

Commit

Permalink
Merge pull request #70 from ao508/label-gen-patch
Browse files Browse the repository at this point in the history
Patch for Recipe db updates in IGO
  • Loading branch information
ao508 authored May 16, 2024
2 parents 172b05d + 7cf7424 commit 1d9f524
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ private String resolveNucleicAcidAbbreviation(String sampleTypeString,
// if pooled library then resolve value based on recipe
switch (sampleType) {
case POOLED_LIBRARY:
return recipe.equalsIgnoreCase("RNASeq")
return (recipe.equalsIgnoreCase("RNASeq") || recipe.equalsIgnoreCase("User_RNA"))
? "r" : "d";
case DNA:
case CFDNA:
Expand Down

0 comments on commit 1d9f524

Please sign in to comment.