Skip to content

0.6.5

Latest

Choose a tag to compare

@jhpoelen jhpoelen released this 25 May 17:26
· 4 commits to main since this release

Features

n/a

Improvements

Example usage:

echo -e "\tTaraxacum agg." \
 | nomer append --include-header gbif-parse \
 | mlr --itsvlite --oxtab cat

producing:

providedExternalId      
providedName            Taraxacum agg.
relationName            SAME_AS
resolvedExternalId      
resolvedName            Taraxacum
resolvedAuthorship      
resolvedRank            genus
resolvedCommonNames     
resolvedPath            Taraxacum
resolvedPathIds         
resolvedPathNames       genus
resolvedPathAuthorships 
resolvedExternalUrl     

whereas, when disabling the ignoring of taxonomic name abbreviations via

echo -e "\tTaraxacum agg." \
 | nomer append \
 --properties <(echo "nomer.parser.gbif.ignoreAbbreviations=false") \
 --include-header \
 gbif-parse \
 | mlr --itsvlite --oxtab cat

produces:

providedExternalId      
providedName            Taraxacum agg.
relationName            SAME_AS
resolvedExternalId      
resolvedName            Taraxacum agg.
resolvedAuthorship      
resolvedRank            species_aggregate
resolvedCommonNames     
resolvedPath            Taraxacum
resolvedPathIds         
resolvedPathNames       genus
resolvedPathAuthorships 
resolvedExternalUrl     

inspired by review notes by @agalassini

Bug Fixes

n/a