From 679d1f92807dda40b428c959f1659d4deb41a729 Mon Sep 17 00:00:00 2001 From: Goran Sterjov Date: Sat, 26 Oct 2024 02:07:33 +1100 Subject: [PATCH] add support for unplace to ranks --- src/utils.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils.rs b/src/utils.rs index 26b72d3..11acc0b 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -291,6 +291,7 @@ pub fn str_to_taxonomic_rank(value: &str) -> Result { "infraspecific name" => Ok(Infraspecies), "other" => Ok(Unranked), + "unplaced to" => Ok(Unranked), "" => Ok(Unranked), val => Err(ParseError::InvalidValue(val.to_string())),