Skip to content

Commit

Permalink
Merge pull request #188 from genomic-medicine-sweden/cgl-pipeline-dev
Browse files Browse the repository at this point in the history
Change prp interpretation for mlst allele calls
  • Loading branch information
ryanjameskennedy authored Oct 13, 2023
2 parents 12e2fa0 + bd669fe commit 20b3c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/pipeline_result_processor/prp/parse/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def _process_allele_call(allele):
elif ',' in allele:
return allele.split(',')
elif '?' in allele:
return "novel"
return "partial"
elif '~' in allele:
return "novel"
elif allele == '-':
Expand Down

0 comments on commit 20b3c48

Please sign in to comment.