Skip to content

Commit

Permalink
Fix regexp for animal id
Browse files Browse the repository at this point in the history
  • Loading branch information
mzueva committed Jul 20, 2023
1 parent 6ff4ca2 commit ecb2eb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from pipeline.log import Logger
from pipeline.common import get_path_with_trailing_delimiter

ANIMAL_ID_PATTERN = '[0-9]+\.?[0-9]+$'
ANIMAL_ID_PATTERN = '[0-9]+(\.[0-9]+)?$'

WSI_PROCESSING_TASK_NAME = 'WSI processing'
TAGS_MAPPING_RULE_DELIMITER = ','
Expand Down

0 comments on commit ecb2eb5

Please sign in to comment.