trias-project / rinse-pathways-checklist

🚢 RINSE - Pathways and vectors of biological invasions in Northwest Europe
https://trias-project.github.io/rinse-pathways-checklist
MIT License
0 stars 0 forks source link

Some names don't have spaces before ( #10

Closed peterdesmet closed 6 years ago

peterdesmet commented 6 years ago

Can be solved with by adding this step BEFORE generating taxon IDs:

# add space before every (, then remove double spaces
mutate(species = str_replace_all(species, "\\(", " ("), species = str_replace_all(species, "  ", " "))