Bundling CIUFES 2023 to a DwC Archive

This is an R Markdown Notebook for converting the species checklist found in the following reference to DarwinCore format for upload into OBIS as part of UNESCO’s eDNA Expeditions project:

Ichthyological Collection of the Federal University of Espírito Santo, CIUFES

Data were downloaded on 2023-10-23. Permission given by Jean-Christophe Joyeux.

Setup

Call the necessary libraries and variables. Suppresses loading messages.

library(magrittr)                       # To use %<>% pipes
suppressMessages(library(janitor))      # To clean input data
suppressMessages(library(dplyr))        # To clean input data
library(stringr)                        # To clean input data
suppressMessages(library(rgnparser))    # To clean species names
suppressMessages(library(taxize))       # To get WoRMS IDs
library(worrms)                         # To get WoRMS IDs
library(digest)                         # To generate hashes
suppressMessages(library(obistools))    # To generate centroid lat/long and uncertainty
suppressMessages(library(sf))           # To generate wkt polygon
suppressMessages(library(EML))          # To create eml.xml file
library(xml2)                           # To create the meta.xml file
suppressMessages(library(zip))          # To zip DwC file

Input Parameters and Paths

path_to_project_root <- "../../.."
site_dir_name <- "brazilian_atlantic_islands_fernando_de_noronha_and_atol_das_rocas_reserves"
dataset_dir_name <- "CIUFES_2023"
original_pdf <- ""
short_name <- "brazilian-atlantic-islands-ciufes-2023"

Parsing PDF table to CSV

We don’t have to do this since the data is not in a PDF.

Read source data

Now we’ll read in the csv table outputted from the previous step

processed_csv <- "speciesLink-20231023164028-0004399.csv"

input_data <- read.csv(paste(path_to_project_root, "datasets", site_dir_name, dataset_dir_name, "raw", processed_csv, sep="/"))

#to preview pretty table
knitr::kable(head(input_data))
datelastmodified basisofrecord country stateprovince institutioncode collectioncode catalognumber kingdom phylum taxonclass ordem family genus species subspecies scientificname scientificnameauthor typestatus yearcollected monthcollected daycollected collector collectornumber fieldnumber julianday timeofday identifiedby yearidentified monthidentified dayidentified continentocean county locality verbatimlatitude verbatimlongitude longitude latitude coordinateprecision boundingbox minimumelevation maximumelevation minimumdepth maximumdepth sex preparationtype individualcount previouscatalognumber relationshiptype relatedcatalogitem notes barcode historyofdeposit depositor yeardeposited monthdeposited daydeposited isolatedfrom isolator isolationmethod conditionsforgrowth geneticallymodified genotype mutant race alternatestate strainproperties strainapplications formofsupply restrictions biologicalrisks pathogenicity
2022-05-09T10:45:40 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 1848 Animalia Chordata NA NA Ephippidae Chaetodipterus faber NA Chaetodipterus faber (Broussonet, 1782) 2004 10 14 R. L. Teixeira NA NA NA NA R. L. Teixeira NA NA NA NA Vitória Ilha do Frade -20,319 -40,338 -40.33800 -20.31900 NA NA NA NA NA NA Álcool 70% 1 NA NA NA 20º19’09”S /40º20’16”W; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-05-09T10:45:35 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 3102 Animalia Chordata NA NA Apogonidae Astrapogon puncticulatus NA Astrapogon puncticulatus (Poey, 1867) 2009 5 NA H. T. Pinheiro NA NA NA NA H. T. Pinheiro NA NA NA NA Ponta da Calheta, Ilha da Trindade -20,512 -29,317 -29.31700 -20.51200 NA NA NA NA NA NA Formol 10% -> Álcool 70% 2 NA NA NA Coletado com puçá. Coordenadas estimadas posteriormente no Google Earth.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-05-09T10:45:40 PreservedSpecimen Brasil Pernambuco UFES CIUFES 2525 Animalia Chordata NA NA Chaenopsidae Emblemariopsis aff. carib NA Emblemariopsis aff. carib Victor, 2010 2013 4 7 R. M. Macieira & T. Simon NA NA NA NA R. M. Macieira NA NA NA NA Fernando de Noronha Pedras Secas -3,824 -32,409 -32.40900 -3.82400 NA NA NA NA NA NA Álcool 96% 1 NA NA NA Coletado com Puçá + Q. Coordenadas estimadas posteriormente no Google Earth; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-12-15T10:28:33 PreservedSpecimen 0 UFES CIUFES 4090 Animalia Chordata NA NA #VALUE! #VALUE! NA #Value! #value! NA NA NA NA NA NA NA NA NA NA NA 0.00000 0.00000 NA NA NA NA NA NA NA NA NA NA Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-12-15T10:28:38 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 4542 Animalia Chordata NA NA Sciaenidae Larimus breviceps NA Larimus breviceps (Cuvier, 1830) 2022 2 7 F. Toscano et. al. NA NA NA NA H. Guabiroba & F. Toscano NA NA NA NA Aracruz Estuário Piraquê-açú, Aracruz - ES (externo) -1,956,795 -4,007,467 -40.07467 -19.56795 NA NA NA NA NA NA Formol 10% –> Álcool 70% 5 NA NA NA Arrasto com portas/ PA3U1/ Coordenadas obtidas in situ.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-12-15T10:28:34 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 4578 Animalia Chordata NA NA Gobiidae Evorthodus lyricus NA Evorthodus lyricus (Girard, 1858) 2019 6 NA H. Guabiroba & F. Toscano NA NA NA NA H. Guabiroba NA NA NA NA Linhares Rio Doce, Regência, Estuário (Interno) -194,064 -40,069,420 -40.06942 -19.40640 NA NA NA NA NA NA Formol 10% –> Álcool 70% 36 NA NA NA Peneira + picaré / Coordenadas estimadas posteriormente no Google Earth.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA

Preprocessing

Here we tidy the data up, since OCR and table parsing errors are common and only take the list of species, since this is a checklist.

Tidy Data

cleaned_data <- input_data

#to preview pretty table
knitr::kable(head(cleaned_data))
datelastmodified basisofrecord country stateprovince institutioncode collectioncode catalognumber kingdom phylum taxonclass ordem family genus species subspecies scientificname scientificnameauthor typestatus yearcollected monthcollected daycollected collector collectornumber fieldnumber julianday timeofday identifiedby yearidentified monthidentified dayidentified continentocean county locality verbatimlatitude verbatimlongitude longitude latitude coordinateprecision boundingbox minimumelevation maximumelevation minimumdepth maximumdepth sex preparationtype individualcount previouscatalognumber relationshiptype relatedcatalogitem notes barcode historyofdeposit depositor yeardeposited monthdeposited daydeposited isolatedfrom isolator isolationmethod conditionsforgrowth geneticallymodified genotype mutant race alternatestate strainproperties strainapplications formofsupply restrictions biologicalrisks pathogenicity
2022-05-09T10:45:40 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 1848 Animalia Chordata NA NA Ephippidae Chaetodipterus faber NA Chaetodipterus faber (Broussonet, 1782) 2004 10 14 R. L. Teixeira NA NA NA NA R. L. Teixeira NA NA NA NA Vitória Ilha do Frade -20,319 -40,338 -40.33800 -20.31900 NA NA NA NA NA NA Álcool 70% 1 NA NA NA 20º19’09”S /40º20’16”W; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-05-09T10:45:35 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 3102 Animalia Chordata NA NA Apogonidae Astrapogon puncticulatus NA Astrapogon puncticulatus (Poey, 1867) 2009 5 NA H. T. Pinheiro NA NA NA NA H. T. Pinheiro NA NA NA NA Ponta da Calheta, Ilha da Trindade -20,512 -29,317 -29.31700 -20.51200 NA NA NA NA NA NA Formol 10% -> Álcool 70% 2 NA NA NA Coletado com puçá. Coordenadas estimadas posteriormente no Google Earth.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-05-09T10:45:40 PreservedSpecimen Brasil Pernambuco UFES CIUFES 2525 Animalia Chordata NA NA Chaenopsidae Emblemariopsis aff. carib NA Emblemariopsis aff. carib Victor, 2010 2013 4 7 R. M. Macieira & T. Simon NA NA NA NA R. M. Macieira NA NA NA NA Fernando de Noronha Pedras Secas -3,824 -32,409 -32.40900 -3.82400 NA NA NA NA NA NA Álcool 96% 1 NA NA NA Coletado com Puçá + Q. Coordenadas estimadas posteriormente no Google Earth; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-12-15T10:28:33 PreservedSpecimen 0 UFES CIUFES 4090 Animalia Chordata NA NA #VALUE! #VALUE! NA #Value! #value! NA NA NA NA NA NA NA NA NA NA NA 0.00000 0.00000 NA NA NA NA NA NA NA NA NA NA Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-12-15T10:28:38 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 4542 Animalia Chordata NA NA Sciaenidae Larimus breviceps NA Larimus breviceps (Cuvier, 1830) 2022 2 7 F. Toscano et. al. NA NA NA NA H. Guabiroba & F. Toscano NA NA NA NA Aracruz Estuário Piraquê-açú, Aracruz - ES (externo) -1,956,795 -4,007,467 -40.07467 -19.56795 NA NA NA NA NA NA Formol 10% –> Álcool 70% 5 NA NA NA Arrasto com portas/ PA3U1/ Coordenadas obtidas in situ.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-12-15T10:28:34 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 4578 Animalia Chordata NA NA Gobiidae Evorthodus lyricus NA Evorthodus lyricus (Girard, 1858) 2019 6 NA H. Guabiroba & F. Toscano NA NA NA NA H. Guabiroba NA NA NA NA Linhares Rio Doce, Regência, Estuário (Interno) -194,064 -40,069,420 -40.06942 -19.40640 NA NA NA NA NA NA Formol 10% –> Álcool 70% 36 NA NA NA Peneira + picaré / Coordenadas estimadas posteriormente no Google Earth.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA

Get WoRMS IDs

Auto matching

First we will try to do this automatically by first cleaning the species names using gnparser and then using the taxise library to call the WoRMS database.

#Parse author names out
parsed_names <- rgnparser::gn_parse(cleaned_data[,"scientificname"])

#Function to get WoRMS IDs. Search for accepted names first and if not found, search for unaccepted. If still not found, use the worrms package to search.
get_worms_id_from_element <- function(element) {
  worms_id <- get_wormsid(element$canonical$full, searchtype="scientific", fuzzy=TRUE, messages = FALSE, accepted = TRUE)
  if (attr(worms_id, "match") == "not found") {
    worms_id <- get_wormsid(element$canonical$full, searchtype="scientific", messages = FALSE, fuzzy=TRUE)
    if (attr(worms_id, "match") == "not found") {
      worms_id <- NA
    }
  }
  return(worms_id)
}

#Call the function
worms_ids <- lapply(parsed_names, function(element) {
  if (element$parsed) {
    return(get_worms_id_from_element(element))
  } else {
    return(NA)
  }
})
## 
##          id                                target
## 1    126224                           Hippocampus
## 5   1525460                           Hippocampus
## 6    275182               Hippocampus abdominalis
## 10   275183                    Hippocampus alatus
## 11   275184                 Hippocampus algiricus
## 12   275185                  Hippocampus angustus
## 18   275186                  Hippocampus barbouri
## 19   275187                Hippocampus bargibanti
## 23   212238              Hippocampus borboniensis
## 25   275189                 Hippocampus breviceps
## 30   212233            Hippocampus camelopardalis
## 31   212234                  Hippocampus capensis
## 32   886550                  Hippocampus casscsio
## 34   275190                  Hippocampus colemani
## 35   275191                     Hippocampus comes
## 36   275192                 Hippocampus coronatus
## 37   388711               Hippocampus curvicuspis
## 40   398432                  Hippocampus debelius
## 41   275193                    Hippocampus denise
## 44   159445                   Hippocampus erectus
## 49   275194                   Hippocampus fisheri
## 50   212230                    Hippocampus fuscus
## 51   212230                    Hippocampus fuscus
## 55   275195                Hippocampus grandiceps
## 56   154776                Hippocampus guttulatus
## 57   248042 Hippocampus guttulatus microstephanus
## 59  1376208                     Hippocampus haema
## 60   275196                  Hippocampus hendriki
## 64   127380               Hippocampus hippocampus
## 67   212239                   Hippocampus histrix
## 71   275197                    Hippocampus ingens
## 72  1288522                  Hippocampus japapigu
## 74   275198                  Hippocampus jayakari
## 75   275199                   Hippocampus jugumus
## 78   212236                  Hippocampus kelloggi
## 80   212237                      Hippocampus kuda
## 84   275200            Hippocampus lichtensteinii
## 90   275201                  Hippocampus minotaur
## 91   275202                  Hippocampus mohnikei
## 96   275203           Hippocampus montebelloensis
## 97   275204               Hippocampus multispinus
## 98  1437127                      Hippocampus nalu
## 106  712534                 Hippocampus paradoxus
## 107  275205               Hippocampus patagonicus
## 109  306811                Hippocampus planifrons
## 112  398433                   Hippocampus pontohi
## 116  388712                  Hippocampus pusillus
## 117  275207            Hippocampus queenslandicus
## 121  159446                     Hippocampus reidi
## 124  398434                  Hippocampus satomiae
## 125  275208              Hippocampus semispinosus
## 127  275209                  Hippocampus sindonis
## 128  275210             Hippocampus spinosissimus
## 131  275211              Hippocampus subelongatus
## 132  306822                 Hippocampus suezensis
## 137  212232              Hippocampus trimaculatus
## 140  474956                      Hippocampus tyro
## 143  398436                Hippocampus waleananus
## 144  212235                    Hippocampus whitei
## 145  275212                     Hippocampus zebra
## 146  275213                  Hippocampus zosterae
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 23                                                        Duméril, 1870
## 25                                                         Peters, 1869
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 44                                                          Perry, 1810
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 64                                                     (Linnaeus, 1758)
## 67                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 78                                                Jordan & Snyder, 1901
## 80                                                        Bleeker, 1852
## 84                                                           Kaup, 1856
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 109                                                        Peters, 1877
## 112                                               Lourie & Kuiter, 2008
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 121                                                      Ginsburg, 1933
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 137                                                         Leach, 1814
## 140                                              Randall & Lourie, 2009
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
##       status
## 1   accepted
## 5   accepted
## 6   accepted
## 10  accepted
## 11  accepted
## 12  accepted
## 18  accepted
## 19  accepted
## 23  accepted
## 25  accepted
## 30  accepted
## 31  accepted
## 32  accepted
## 34  accepted
## 35  accepted
## 36  accepted
## 37  accepted
## 40  accepted
## 41  accepted
## 44  accepted
## 49  accepted
## 50  accepted
## 51  accepted
## 55  accepted
## 56  accepted
## 57  accepted
## 59  accepted
## 60  accepted
## 64  accepted
## 67  accepted
## 71  accepted
## 72  accepted
## 74  accepted
## 75  accepted
## 78  accepted
## 80  accepted
## 84  accepted
## 90  accepted
## 91  accepted
## 96  accepted
## 97  accepted
## 98  accepted
## 106 accepted
## 107 accepted
## 109 accepted
## 112 accepted
## 116 accepted
## 117 accepted
## 121 accepted
## 124 accepted
## 125 accepted
## 127 accepted
## 128 accepted
## 131 accepted
## 132 accepted
## 137 accepted
## 140 accepted
## 143 accepted
## 144 accepted
## 145 accepted
## 146 accepted
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                 target
## 1    126224                            Hippocampus
## 5   1525460                            Hippocampus
## 6    275182                Hippocampus abdominalis
## 7    306774                    Hippocampus agnesae
## 8    306775                      Hippocampus aimei
## 9    716772                      Hippocampus aimei
## 10   275183                     Hippocampus alatus
## 11   275184                  Hippocampus algiricus
## 12   275185                   Hippocampus angustus
## 13   306776                 Hippocampus antiquorum
## 14   306777                   Hippocampus antiquus
## 15   400954                      Hippocampus arnei
## 16   716773                      Hippocampus arnei
## 17   306778                  Hippocampus aterrimus
## 18   275186                   Hippocampus barbouri
## 19   275187                 Hippocampus bargibanti
## 20   713214                   Hippocampus bicuspis
## 21   275188                Hippocampus biocellatus
## 22   306779                   Hippocampus bleekeri
## 23   212238               Hippocampus borboniensis
## 24   306780             Hippocampus brachyrhynchus
## 25   275189                  Hippocampus breviceps
## 26   306781               Hippocampus brevirostris
## 27   306782                   Hippocampus brunneus
## 28   400945            Hippocampus cameleopardalis
## 29   400946            Hippocampus cameleopardalus
## 30   212233             Hippocampus camelopardalis
## 31   212234                   Hippocampus capensis
## 32   886550                   Hippocampus casscsio
## 33   306783                  Hippocampus chinensis
## 34   275190                   Hippocampus colemani
## 35   275191                      Hippocampus comes
## 36   275192                  Hippocampus coronatus
## 37   388711                Hippocampus curvicuspis
## 38   306784                      Hippocampus dahli
## 39   306785                     Hippocampus deanei
## 40   398432                   Hippocampus debelius
## 41   275193                     Hippocampus denise
## 42   306786               Hippocampus ecuadorensis
## 43   306787                  Hippocampus elongatus
## 44   159445                    Hippocampus erectus
## 45   306788                  Hippocampus erinaceus
## 46   154815                  Hippocampus europaeus
## 47   306789               Hippocampus fascicularis
## 48   713215               Hippocampus filamentosus
## 49   275194                    Hippocampus fisheri
## 50   212230                     Hippocampus fuscus
## 51   212230                     Hippocampus fuscus
## 52   306790              Hippocampus graciliformis
## 53   306791                   Hippocampus gracilis
## 54   306792              Hippocampus gracilissimus
## 55   275195                 Hippocampus grandiceps
## 56   154776                 Hippocampus guttulatus
## 57   248042  Hippocampus guttulatus microstephanus
## 58   323136  Hippocampus guttulatus multiannularis
## 59  1376208                      Hippocampus haema
## 60   275196                   Hippocampus hendriki
## 61   154458                 Hippocampus heptagonus
## 62   306793                Hippocampus hildebrandi
## 63   306794                    Hippocampus hilonis
## 64   127380                Hippocampus hippocampus
## 65   322937 Hippocampus hippocampus microcoronatus
## 66   322938 Hippocampus hippocampus microstephanus
## 67   212239                    Hippocampus histrix
## 68   306795                      Hippocampus horai
## 69   306796                  Hippocampus hudsonius
## 70   400949                    Hippocampus hystrix
## 71   275197                     Hippocampus ingens
## 72  1288522                   Hippocampus japapigu
## 73   306797                  Hippocampus japonicus
## 74   275198                   Hippocampus jayakari
## 75   275199                    Hippocampus jugumus
## 76   306798           Hippocampus kampylotrachelos
## 77   306799                     Hippocampus kaupii
## 78   212236                   Hippocampus kelloggi
## 79   306800                   Hippocampus kincaidi
## 80   212237                       Hippocampus kuda
## 81   323205        Hippocampus kuda multiannularis
## 82   306801              Hippocampus laevicaudatus
## 83   713217                      Hippocampus lenis
## 84   275200             Hippocampus lichtensteinii
## 85   154777               Hippocampus longirostris
## 86   306802                 Hippocampus manadensis
## 87   306803                   Hippocampus mannulus
## 88   306804                 Hippocampus marginalis
## 89   306805               Hippocampus melanospilos
## 90   275201                   Hippocampus minotaur
## 91   275202                   Hippocampus mohnikei
## 92   306806                Hippocampus moluccensis
## 93   400952                    Hippocampus monckei
## 94   400951                   Hippocampus monickei
## 95   400953                    Hippocampus monikei
## 96   275203            Hippocampus montebelloensis
## 97   275204                Hippocampus multispinus
## 98  1437127                       Hippocampus nalu
## 99   306807                 Hippocampus natalensis
## 100  306808             Hippocampus novaehebudorum
## 101  400955             Hippocampus novaehollandae
## 102  306809            Hippocampus novaehollandiae
## 103  713212                   Hippocampus obscurus
## 104  713213                   Hippocampus obscurus
## 105  306810                    Hippocampus obtusus
## 106  712534                  Hippocampus paradoxus
## 107  275205                Hippocampus patagonicus
## 108  400947                 Hippocampus pentagonus
## 109  306811                 Hippocampus planifrons
## 110  306812                      Hippocampus poeyi
## 111  306813                 Hippocampus polytaenia
## 112  398433                    Hippocampus pontohi
## 113  275206                   Hippocampus procerus
## 114  306814                Hippocampus punctulatus
## 115  306815                Hippocampus punctulatus
## 116  388712                   Hippocampus pusillus
## 117  275207             Hippocampus queenslandicus
## 118  306816                       Hippocampus raji
## 119  127381                  Hippocampus ramulosus
## 120  306817                    Hippocampus regulus
## 121  159446                      Hippocampus reidi
## 122  306818               Hippocampus rhynchomacer
## 123  306819                 Hippocampus rosamondae
## 124  398434                   Hippocampus satomiae
## 125  275208               Hippocampus semispinosus
## 126  398435                   Hippocampus severnsi
## 127  275209                   Hippocampus sindonis
## 128  275210              Hippocampus spinosissimus
## 129  306820                   Hippocampus stylifer
## 130  306821               Hippocampus subcoronatus
## 131  275211               Hippocampus subelongatus
## 132  306822                  Hippocampus suezensis
## 133  306823                   Hippocampus taeniops
## 134  306824               Hippocampus taeniopterus
## 135  306825                  Hippocampus takakurae
## 136  306826                Hippocampus tetragonous
## 137  212232               Hippocampus trimaculatus
## 138  306827                    Hippocampus tristis
## 139  306828               Hippocampus tuberculatus
## 140  474956                       Hippocampus tyro
## 141  306829                   Hippocampus villosus
## 142  306830                   Hippocampus vulgaris
## 143  398436                 Hippocampus waleananus
## 144  212235                     Hippocampus whitei
## 145  275212                      Hippocampus zebra
## 146  275213                   Hippocampus zosterae
## 2    843450                                   <NA>
## 3    843451                                   <NA>
## 4    843452                                   <NA>
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 7                                                          Fowler, 1907
## 8                                                           Roule, 1916
## 9                                                           Roule, 1916
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 13                                                          Leach, 1814
## 14                                                          Risso, 1827
## 15                                                          Roule, 1916
## 16                                                          Roule, 1916
## 17                                                Jordan & Snyder, 1902
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 20                                                           Kaup, 1856
## 21                                                         Kuiter, 2001
## 22                                                         Fowler, 1907
## 23                                                        Duméril, 1870
## 24                                                        Duncker, 1914
## 25                                                         Peters, 1869
## 26                                                         Schinz, 1822
## 27                                                           Bean, 1906
## 28                                                       Bianconi, 1854
## 29                                                       Bianconi, 1854
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 33                                                     Basilewsky, 1855
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 38                                                         Ogilby, 1908
## 39                                                        Duméril, 1861
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 42                                                         Fowler, 1922
## 43                                                      Castelnau, 1873
## 44                                                          Perry, 1810
## 45                                                        Günther, 1870
## 46                                                       Ginsburg, 1933
## 47                                                           Kaup, 1856
## 48                                                        Duméril, 1870
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 52                                                      McCulloch, 1911
## 53                                                           Gill, 1862
## 54                                            Temminck & Schlegel, 1850
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 58                                                       Ginsburg, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 61                                                     Rafinesque, 1810
## 62                                                       Ginsburg, 1933
## 63                                              Jordan & Evermann, 1903
## 64                                                     (Linnaeus, 1758)
## 65                                                    Slastenenko, 1938
## 66                                                    Slastenenko, 1937
## 67                                                           Kaup, 1856
## 68                                                        Duncker, 1926
## 69                                                          DeKay, 1842
## 70                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 73                                                           Kaup, 1856
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 76                                                        Bleeker, 1854
## 77                                                        Duméril, 1870
## 78                                                Jordan & Snyder, 1901
## 79                                             Townsend & Barbour, 1906
## 80                                                        Bleeker, 1852
## 81                                                            Raj, 1941
## 82                                                           Kaup, 1856
## 83                                                         De Vis, 1908
## 84                                                           Kaup, 1856
## 85                                                         Schinz, 1822
## 86                                                        Bleeker, 1856
## 87                                                         Cantor, 1849
## 88                                                           Kaup, 1856
## 89                                                        Bleeker, 1854
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 92                                                        Bleeker, 1852
## 93                                                        Bleeker, 1853
## 94                                                        Bleeker, 1853
## 95                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 99                                                      von Bonde, 1923
## 100                                                        Fowler, 1944
## 101                                                  Steindachner, 1866
## 102                                                  Steindachner, 1866
## 103                                          Hemprich & Ehrenberg, 1856
## 104                                                     Ehrenberg, 1871
## 105                                                      Ginsburg, 1933
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 108                                                    Rafinesque, 1810
## 109                                                        Peters, 1877
## 110                                                 Howell Rivero, 1934
## 111                                                       Bleeker, 1854
## 112                                               Lourie & Kuiter, 2008
## 113                                                        Kuiter, 2001
## 114                                                     Guichenot, 1853
## 115                                                          Kaup, 1856
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 118                                                       Whitley, 1955
## 119                                                         Leach, 1814
## 120                                                      Ginsburg, 1933
## 121                                                      Ginsburg, 1933
## 122                                                       Duméril, 1870
## 123                                                       Borodin, 1928
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 126                                               Lourie & Kuiter, 2008
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 129                                              Jordan & Gilbert, 1882
## 130                                                       Günther, 1866
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 133                                                        Fowler, 1904
## 134                                                       Bleeker, 1852
## 135                                                        Tanaka, 1916
## 136                                                    (Mitchill, 1814)
## 137                                                         Leach, 1814
## 138                                                     Castelnau, 1872
## 139                                                     Castelnau, 1875
## 140                                              Randall & Lourie, 2009
## 141                                                       Günther, 1880
## 142                                                       Cloquet, 1821
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
## 2                                                                  <NA>
## 3                                                                  <NA>
## 4                                                                  <NA>
##          status
## 1      accepted
## 5      accepted
## 6      accepted
## 7    unaccepted
## 8    unaccepted
## 9    unaccepted
## 10     accepted
## 11     accepted
## 12     accepted
## 13   unaccepted
## 14   unaccepted
## 15   unaccepted
## 16   unaccepted
## 17   unaccepted
## 18     accepted
## 19     accepted
## 20   unaccepted
## 21   unaccepted
## 22   unaccepted
## 23     accepted
## 24   unaccepted
## 25     accepted
## 26   unaccepted
## 27   unaccepted
## 28   unaccepted
## 29   unaccepted
## 30     accepted
## 31     accepted
## 32     accepted
## 33   unaccepted
## 34     accepted
## 35     accepted
## 36     accepted
## 37     accepted
## 38   unaccepted
## 39   unaccepted
## 40     accepted
## 41     accepted
## 42   unaccepted
## 43   unaccepted
## 44     accepted
## 45   unaccepted
## 46   unaccepted
## 47   unaccepted
## 48   unaccepted
## 49     accepted
## 50     accepted
## 51     accepted
## 52   unaccepted
## 53   unaccepted
## 54   unaccepted
## 55     accepted
## 56     accepted
## 57     accepted
## 58   unaccepted
## 59     accepted
## 60     accepted
## 61   unaccepted
## 62   unaccepted
## 63   unaccepted
## 64     accepted
## 65   unaccepted
## 66   unaccepted
## 67     accepted
## 68   unaccepted
## 69   unaccepted
## 70   unaccepted
## 71     accepted
## 72     accepted
## 73   unaccepted
## 74     accepted
## 75     accepted
## 76   unaccepted
## 77   unaccepted
## 78     accepted
## 79   unaccepted
## 80     accepted
## 81   unaccepted
## 82   unaccepted
## 83   unaccepted
## 84     accepted
## 85   unaccepted
## 86   unaccepted
## 87   unaccepted
## 88   unaccepted
## 89   unaccepted
## 90     accepted
## 91     accepted
## 92   unaccepted
## 93   unaccepted
## 94   unaccepted
## 95   unaccepted
## 96     accepted
## 97     accepted
## 98     accepted
## 99   unaccepted
## 100  unaccepted
## 101  unaccepted
## 102  unaccepted
## 103  unaccepted
## 104  unaccepted
## 105  unaccepted
## 106    accepted
## 107    accepted
## 108  unaccepted
## 109    accepted
## 110  unaccepted
## 111  unaccepted
## 112    accepted
## 113  unaccepted
## 114  unaccepted
## 115  unaccepted
## 116    accepted
## 117    accepted
## 118  unaccepted
## 119  unaccepted
## 120  unaccepted
## 121    accepted
## 122  unaccepted
## 123  unaccepted
## 124    accepted
## 125    accepted
## 126  unaccepted
## 127    accepted
## 128    accepted
## 129  unaccepted
## 130  unaccepted
## 131    accepted
## 132    accepted
## 133  unaccepted
## 134  unaccepted
## 135  unaccepted
## 136  unaccepted
## 137    accepted
## 138  unaccepted
## 139  unaccepted
## 140    accepted
## 141  unaccepted
## 142  unaccepted
## 143    accepted
## 144    accepted
## 145    accepted
## 146    accepted
## 2   quarantined
## 3   quarantined
## 4   quarantined
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                target
## 1    126224                           Hippocampus
## 5   1525460                           Hippocampus
## 6    275182               Hippocampus abdominalis
## 10   275183                    Hippocampus alatus
## 11   275184                 Hippocampus algiricus
## 12   275185                  Hippocampus angustus
## 18   275186                  Hippocampus barbouri
## 19   275187                Hippocampus bargibanti
## 23   212238              Hippocampus borboniensis
## 25   275189                 Hippocampus breviceps
## 30   212233            Hippocampus camelopardalis
## 31   212234                  Hippocampus capensis
## 32   886550                  Hippocampus casscsio
## 34   275190                  Hippocampus colemani
## 35   275191                     Hippocampus comes
## 36   275192                 Hippocampus coronatus
## 37   388711               Hippocampus curvicuspis
## 40   398432                  Hippocampus debelius
## 41   275193                    Hippocampus denise
## 44   159445                   Hippocampus erectus
## 49   275194                   Hippocampus fisheri
## 50   212230                    Hippocampus fuscus
## 51   212230                    Hippocampus fuscus
## 55   275195                Hippocampus grandiceps
## 56   154776                Hippocampus guttulatus
## 57   248042 Hippocampus guttulatus microstephanus
## 59  1376208                     Hippocampus haema
## 60   275196                  Hippocampus hendriki
## 64   127380               Hippocampus hippocampus
## 67   212239                   Hippocampus histrix
## 71   275197                    Hippocampus ingens
## 72  1288522                  Hippocampus japapigu
## 74   275198                  Hippocampus jayakari
## 75   275199                   Hippocampus jugumus
## 78   212236                  Hippocampus kelloggi
## 80   212237                      Hippocampus kuda
## 84   275200            Hippocampus lichtensteinii
## 90   275201                  Hippocampus minotaur
## 91   275202                  Hippocampus mohnikei
## 96   275203           Hippocampus montebelloensis
## 97   275204               Hippocampus multispinus
## 98  1437127                      Hippocampus nalu
## 106  712534                 Hippocampus paradoxus
## 107  275205               Hippocampus patagonicus
## 109  306811                Hippocampus planifrons
## 112  398433                   Hippocampus pontohi
## 116  388712                  Hippocampus pusillus
## 117  275207            Hippocampus queenslandicus
## 121  159446                     Hippocampus reidi
## 124  398434                  Hippocampus satomiae
## 125  275208              Hippocampus semispinosus
## 127  275209                  Hippocampus sindonis
## 128  275210             Hippocampus spinosissimus
## 131  275211              Hippocampus subelongatus
## 132  306822                 Hippocampus suezensis
## 137  212232              Hippocampus trimaculatus
## 140  474956                      Hippocampus tyro
## 143  398436                Hippocampus waleananus
## 144  212235                    Hippocampus whitei
## 145  275212                     Hippocampus zebra
## 146  275213                  Hippocampus zosterae
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 23                                                        Duméril, 1870
## 25                                                         Peters, 1869
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 44                                                          Perry, 1810
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 64                                                     (Linnaeus, 1758)
## 67                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 78                                                Jordan & Snyder, 1901
## 80                                                        Bleeker, 1852
## 84                                                           Kaup, 1856
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 109                                                        Peters, 1877
## 112                                               Lourie & Kuiter, 2008
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 121                                                      Ginsburg, 1933
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 137                                                         Leach, 1814
## 140                                              Randall & Lourie, 2009
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
##       status
## 1   accepted
## 5   accepted
## 6   accepted
## 10  accepted
## 11  accepted
## 12  accepted
## 18  accepted
## 19  accepted
## 23  accepted
## 25  accepted
## 30  accepted
## 31  accepted
## 32  accepted
## 34  accepted
## 35  accepted
## 36  accepted
## 37  accepted
## 40  accepted
## 41  accepted
## 44  accepted
## 49  accepted
## 50  accepted
## 51  accepted
## 55  accepted
## 56  accepted
## 57  accepted
## 59  accepted
## 60  accepted
## 64  accepted
## 67  accepted
## 71  accepted
## 72  accepted
## 74  accepted
## 75  accepted
## 78  accepted
## 80  accepted
## 84  accepted
## 90  accepted
## 91  accepted
## 96  accepted
## 97  accepted
## 98  accepted
## 106 accepted
## 107 accepted
## 109 accepted
## 112 accepted
## 116 accepted
## 117 accepted
## 121 accepted
## 124 accepted
## 125 accepted
## 127 accepted
## 128 accepted
## 131 accepted
## 132 accepted
## 137 accepted
## 140 accepted
## 143 accepted
## 144 accepted
## 145 accepted
## 146 accepted
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                 target
## 1    126224                            Hippocampus
## 5   1525460                            Hippocampus
## 6    275182                Hippocampus abdominalis
## 7    306774                    Hippocampus agnesae
## 8    306775                      Hippocampus aimei
## 9    716772                      Hippocampus aimei
## 10   275183                     Hippocampus alatus
## 11   275184                  Hippocampus algiricus
## 12   275185                   Hippocampus angustus
## 13   306776                 Hippocampus antiquorum
## 14   306777                   Hippocampus antiquus
## 15   400954                      Hippocampus arnei
## 16   716773                      Hippocampus arnei
## 17   306778                  Hippocampus aterrimus
## 18   275186                   Hippocampus barbouri
## 19   275187                 Hippocampus bargibanti
## 20   713214                   Hippocampus bicuspis
## 21   275188                Hippocampus biocellatus
## 22   306779                   Hippocampus bleekeri
## 23   212238               Hippocampus borboniensis
## 24   306780             Hippocampus brachyrhynchus
## 25   275189                  Hippocampus breviceps
## 26   306781               Hippocampus brevirostris
## 27   306782                   Hippocampus brunneus
## 28   400945            Hippocampus cameleopardalis
## 29   400946            Hippocampus cameleopardalus
## 30   212233             Hippocampus camelopardalis
## 31   212234                   Hippocampus capensis
## 32   886550                   Hippocampus casscsio
## 33   306783                  Hippocampus chinensis
## 34   275190                   Hippocampus colemani
## 35   275191                      Hippocampus comes
## 36   275192                  Hippocampus coronatus
## 37   388711                Hippocampus curvicuspis
## 38   306784                      Hippocampus dahli
## 39   306785                     Hippocampus deanei
## 40   398432                   Hippocampus debelius
## 41   275193                     Hippocampus denise
## 42   306786               Hippocampus ecuadorensis
## 43   306787                  Hippocampus elongatus
## 44   159445                    Hippocampus erectus
## 45   306788                  Hippocampus erinaceus
## 46   154815                  Hippocampus europaeus
## 47   306789               Hippocampus fascicularis
## 48   713215               Hippocampus filamentosus
## 49   275194                    Hippocampus fisheri
## 50   212230                     Hippocampus fuscus
## 51   212230                     Hippocampus fuscus
## 52   306790              Hippocampus graciliformis
## 53   306791                   Hippocampus gracilis
## 54   306792              Hippocampus gracilissimus
## 55   275195                 Hippocampus grandiceps
## 56   154776                 Hippocampus guttulatus
## 57   248042  Hippocampus guttulatus microstephanus
## 58   323136  Hippocampus guttulatus multiannularis
## 59  1376208                      Hippocampus haema
## 60   275196                   Hippocampus hendriki
## 61   154458                 Hippocampus heptagonus
## 62   306793                Hippocampus hildebrandi
## 63   306794                    Hippocampus hilonis
## 64   127380                Hippocampus hippocampus
## 65   322937 Hippocampus hippocampus microcoronatus
## 66   322938 Hippocampus hippocampus microstephanus
## 67   212239                    Hippocampus histrix
## 68   306795                      Hippocampus horai
## 69   306796                  Hippocampus hudsonius
## 70   400949                    Hippocampus hystrix
## 71   275197                     Hippocampus ingens
## 72  1288522                   Hippocampus japapigu
## 73   306797                  Hippocampus japonicus
## 74   275198                   Hippocampus jayakari
## 75   275199                    Hippocampus jugumus
## 76   306798           Hippocampus kampylotrachelos
## 77   306799                     Hippocampus kaupii
## 78   212236                   Hippocampus kelloggi
## 79   306800                   Hippocampus kincaidi
## 80   212237                       Hippocampus kuda
## 81   323205        Hippocampus kuda multiannularis
## 82   306801              Hippocampus laevicaudatus
## 83   713217                      Hippocampus lenis
## 84   275200             Hippocampus lichtensteinii
## 85   154777               Hippocampus longirostris
## 86   306802                 Hippocampus manadensis
## 87   306803                   Hippocampus mannulus
## 88   306804                 Hippocampus marginalis
## 89   306805               Hippocampus melanospilos
## 90   275201                   Hippocampus minotaur
## 91   275202                   Hippocampus mohnikei
## 92   306806                Hippocampus moluccensis
## 93   400952                    Hippocampus monckei
## 94   400951                   Hippocampus monickei
## 95   400953                    Hippocampus monikei
## 96   275203            Hippocampus montebelloensis
## 97   275204                Hippocampus multispinus
## 98  1437127                       Hippocampus nalu
## 99   306807                 Hippocampus natalensis
## 100  306808             Hippocampus novaehebudorum
## 101  400955             Hippocampus novaehollandae
## 102  306809            Hippocampus novaehollandiae
## 103  713212                   Hippocampus obscurus
## 104  713213                   Hippocampus obscurus
## 105  306810                    Hippocampus obtusus
## 106  712534                  Hippocampus paradoxus
## 107  275205                Hippocampus patagonicus
## 108  400947                 Hippocampus pentagonus
## 109  306811                 Hippocampus planifrons
## 110  306812                      Hippocampus poeyi
## 111  306813                 Hippocampus polytaenia
## 112  398433                    Hippocampus pontohi
## 113  275206                   Hippocampus procerus
## 114  306814                Hippocampus punctulatus
## 115  306815                Hippocampus punctulatus
## 116  388712                   Hippocampus pusillus
## 117  275207             Hippocampus queenslandicus
## 118  306816                       Hippocampus raji
## 119  127381                  Hippocampus ramulosus
## 120  306817                    Hippocampus regulus
## 121  159446                      Hippocampus reidi
## 122  306818               Hippocampus rhynchomacer
## 123  306819                 Hippocampus rosamondae
## 124  398434                   Hippocampus satomiae
## 125  275208               Hippocampus semispinosus
## 126  398435                   Hippocampus severnsi
## 127  275209                   Hippocampus sindonis
## 128  275210              Hippocampus spinosissimus
## 129  306820                   Hippocampus stylifer
## 130  306821               Hippocampus subcoronatus
## 131  275211               Hippocampus subelongatus
## 132  306822                  Hippocampus suezensis
## 133  306823                   Hippocampus taeniops
## 134  306824               Hippocampus taeniopterus
## 135  306825                  Hippocampus takakurae
## 136  306826                Hippocampus tetragonous
## 137  212232               Hippocampus trimaculatus
## 138  306827                    Hippocampus tristis
## 139  306828               Hippocampus tuberculatus
## 140  474956                       Hippocampus tyro
## 141  306829                   Hippocampus villosus
## 142  306830                   Hippocampus vulgaris
## 143  398436                 Hippocampus waleananus
## 144  212235                     Hippocampus whitei
## 145  275212                      Hippocampus zebra
## 146  275213                   Hippocampus zosterae
## 2    843450                                   <NA>
## 3    843451                                   <NA>
## 4    843452                                   <NA>
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 7                                                          Fowler, 1907
## 8                                                           Roule, 1916
## 9                                                           Roule, 1916
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 13                                                          Leach, 1814
## 14                                                          Risso, 1827
## 15                                                          Roule, 1916
## 16                                                          Roule, 1916
## 17                                                Jordan & Snyder, 1902
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 20                                                           Kaup, 1856
## 21                                                         Kuiter, 2001
## 22                                                         Fowler, 1907
## 23                                                        Duméril, 1870
## 24                                                        Duncker, 1914
## 25                                                         Peters, 1869
## 26                                                         Schinz, 1822
## 27                                                           Bean, 1906
## 28                                                       Bianconi, 1854
## 29                                                       Bianconi, 1854
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 33                                                     Basilewsky, 1855
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 38                                                         Ogilby, 1908
## 39                                                        Duméril, 1861
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 42                                                         Fowler, 1922
## 43                                                      Castelnau, 1873
## 44                                                          Perry, 1810
## 45                                                        Günther, 1870
## 46                                                       Ginsburg, 1933
## 47                                                           Kaup, 1856
## 48                                                        Duméril, 1870
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 52                                                      McCulloch, 1911
## 53                                                           Gill, 1862
## 54                                            Temminck & Schlegel, 1850
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 58                                                       Ginsburg, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 61                                                     Rafinesque, 1810
## 62                                                       Ginsburg, 1933
## 63                                              Jordan & Evermann, 1903
## 64                                                     (Linnaeus, 1758)
## 65                                                    Slastenenko, 1938
## 66                                                    Slastenenko, 1937
## 67                                                           Kaup, 1856
## 68                                                        Duncker, 1926
## 69                                                          DeKay, 1842
## 70                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 73                                                           Kaup, 1856
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 76                                                        Bleeker, 1854
## 77                                                        Duméril, 1870
## 78                                                Jordan & Snyder, 1901
## 79                                             Townsend & Barbour, 1906
## 80                                                        Bleeker, 1852
## 81                                                            Raj, 1941
## 82                                                           Kaup, 1856
## 83                                                         De Vis, 1908
## 84                                                           Kaup, 1856
## 85                                                         Schinz, 1822
## 86                                                        Bleeker, 1856
## 87                                                         Cantor, 1849
## 88                                                           Kaup, 1856
## 89                                                        Bleeker, 1854
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 92                                                        Bleeker, 1852
## 93                                                        Bleeker, 1853
## 94                                                        Bleeker, 1853
## 95                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 99                                                      von Bonde, 1923
## 100                                                        Fowler, 1944
## 101                                                  Steindachner, 1866
## 102                                                  Steindachner, 1866
## 103                                          Hemprich & Ehrenberg, 1856
## 104                                                     Ehrenberg, 1871
## 105                                                      Ginsburg, 1933
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 108                                                    Rafinesque, 1810
## 109                                                        Peters, 1877
## 110                                                 Howell Rivero, 1934
## 111                                                       Bleeker, 1854
## 112                                               Lourie & Kuiter, 2008
## 113                                                        Kuiter, 2001
## 114                                                     Guichenot, 1853
## 115                                                          Kaup, 1856
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 118                                                       Whitley, 1955
## 119                                                         Leach, 1814
## 120                                                      Ginsburg, 1933
## 121                                                      Ginsburg, 1933
## 122                                                       Duméril, 1870
## 123                                                       Borodin, 1928
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 126                                               Lourie & Kuiter, 2008
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 129                                              Jordan & Gilbert, 1882
## 130                                                       Günther, 1866
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 133                                                        Fowler, 1904
## 134                                                       Bleeker, 1852
## 135                                                        Tanaka, 1916
## 136                                                    (Mitchill, 1814)
## 137                                                         Leach, 1814
## 138                                                     Castelnau, 1872
## 139                                                     Castelnau, 1875
## 140                                              Randall & Lourie, 2009
## 141                                                       Günther, 1880
## 142                                                       Cloquet, 1821
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
## 2                                                                  <NA>
## 3                                                                  <NA>
## 4                                                                  <NA>
##          status
## 1      accepted
## 5      accepted
## 6      accepted
## 7    unaccepted
## 8    unaccepted
## 9    unaccepted
## 10     accepted
## 11     accepted
## 12     accepted
## 13   unaccepted
## 14   unaccepted
## 15   unaccepted
## 16   unaccepted
## 17   unaccepted
## 18     accepted
## 19     accepted
## 20   unaccepted
## 21   unaccepted
## 22   unaccepted
## 23     accepted
## 24   unaccepted
## 25     accepted
## 26   unaccepted
## 27   unaccepted
## 28   unaccepted
## 29   unaccepted
## 30     accepted
## 31     accepted
## 32     accepted
## 33   unaccepted
## 34     accepted
## 35     accepted
## 36     accepted
## 37     accepted
## 38   unaccepted
## 39   unaccepted
## 40     accepted
## 41     accepted
## 42   unaccepted
## 43   unaccepted
## 44     accepted
## 45   unaccepted
## 46   unaccepted
## 47   unaccepted
## 48   unaccepted
## 49     accepted
## 50     accepted
## 51     accepted
## 52   unaccepted
## 53   unaccepted
## 54   unaccepted
## 55     accepted
## 56     accepted
## 57     accepted
## 58   unaccepted
## 59     accepted
## 60     accepted
## 61   unaccepted
## 62   unaccepted
## 63   unaccepted
## 64     accepted
## 65   unaccepted
## 66   unaccepted
## 67     accepted
## 68   unaccepted
## 69   unaccepted
## 70   unaccepted
## 71     accepted
## 72     accepted
## 73   unaccepted
## 74     accepted
## 75     accepted
## 76   unaccepted
## 77   unaccepted
## 78     accepted
## 79   unaccepted
## 80     accepted
## 81   unaccepted
## 82   unaccepted
## 83   unaccepted
## 84     accepted
## 85   unaccepted
## 86   unaccepted
## 87   unaccepted
## 88   unaccepted
## 89   unaccepted
## 90     accepted
## 91     accepted
## 92   unaccepted
## 93   unaccepted
## 94   unaccepted
## 95   unaccepted
## 96     accepted
## 97     accepted
## 98     accepted
## 99   unaccepted
## 100  unaccepted
## 101  unaccepted
## 102  unaccepted
## 103  unaccepted
## 104  unaccepted
## 105  unaccepted
## 106    accepted
## 107    accepted
## 108  unaccepted
## 109    accepted
## 110  unaccepted
## 111  unaccepted
## 112    accepted
## 113  unaccepted
## 114  unaccepted
## 115  unaccepted
## 116    accepted
## 117    accepted
## 118  unaccepted
## 119  unaccepted
## 120  unaccepted
## 121    accepted
## 122  unaccepted
## 123  unaccepted
## 124    accepted
## 125    accepted
## 126  unaccepted
## 127    accepted
## 128    accepted
## 129  unaccepted
## 130  unaccepted
## 131    accepted
## 132    accepted
## 133  unaccepted
## 134  unaccepted
## 135  unaccepted
## 136  unaccepted
## 137    accepted
## 138  unaccepted
## 139  unaccepted
## 140    accepted
## 141  unaccepted
## 142  unaccepted
## 143    accepted
## 144    accepted
## 145    accepted
## 146    accepted
## 2   quarantined
## 3   quarantined
## 4   quarantined
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                target
## 1    126224                           Hippocampus
## 5   1525460                           Hippocampus
## 6    275182               Hippocampus abdominalis
## 10   275183                    Hippocampus alatus
## 11   275184                 Hippocampus algiricus
## 12   275185                  Hippocampus angustus
## 18   275186                  Hippocampus barbouri
## 19   275187                Hippocampus bargibanti
## 23   212238              Hippocampus borboniensis
## 25   275189                 Hippocampus breviceps
## 30   212233            Hippocampus camelopardalis
## 31   212234                  Hippocampus capensis
## 32   886550                  Hippocampus casscsio
## 34   275190                  Hippocampus colemani
## 35   275191                     Hippocampus comes
## 36   275192                 Hippocampus coronatus
## 37   388711               Hippocampus curvicuspis
## 40   398432                  Hippocampus debelius
## 41   275193                    Hippocampus denise
## 44   159445                   Hippocampus erectus
## 49   275194                   Hippocampus fisheri
## 50   212230                    Hippocampus fuscus
## 51   212230                    Hippocampus fuscus
## 55   275195                Hippocampus grandiceps
## 56   154776                Hippocampus guttulatus
## 57   248042 Hippocampus guttulatus microstephanus
## 59  1376208                     Hippocampus haema
## 60   275196                  Hippocampus hendriki
## 64   127380               Hippocampus hippocampus
## 67   212239                   Hippocampus histrix
## 71   275197                    Hippocampus ingens
## 72  1288522                  Hippocampus japapigu
## 74   275198                  Hippocampus jayakari
## 75   275199                   Hippocampus jugumus
## 78   212236                  Hippocampus kelloggi
## 80   212237                      Hippocampus kuda
## 84   275200            Hippocampus lichtensteinii
## 90   275201                  Hippocampus minotaur
## 91   275202                  Hippocampus mohnikei
## 96   275203           Hippocampus montebelloensis
## 97   275204               Hippocampus multispinus
## 98  1437127                      Hippocampus nalu
## 106  712534                 Hippocampus paradoxus
## 107  275205               Hippocampus patagonicus
## 109  306811                Hippocampus planifrons
## 112  398433                   Hippocampus pontohi
## 116  388712                  Hippocampus pusillus
## 117  275207            Hippocampus queenslandicus
## 121  159446                     Hippocampus reidi
## 124  398434                  Hippocampus satomiae
## 125  275208              Hippocampus semispinosus
## 127  275209                  Hippocampus sindonis
## 128  275210             Hippocampus spinosissimus
## 131  275211              Hippocampus subelongatus
## 132  306822                 Hippocampus suezensis
## 137  212232              Hippocampus trimaculatus
## 140  474956                      Hippocampus tyro
## 143  398436                Hippocampus waleananus
## 144  212235                    Hippocampus whitei
## 145  275212                     Hippocampus zebra
## 146  275213                  Hippocampus zosterae
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 23                                                        Duméril, 1870
## 25                                                         Peters, 1869
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 44                                                          Perry, 1810
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 64                                                     (Linnaeus, 1758)
## 67                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 78                                                Jordan & Snyder, 1901
## 80                                                        Bleeker, 1852
## 84                                                           Kaup, 1856
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 109                                                        Peters, 1877
## 112                                               Lourie & Kuiter, 2008
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 121                                                      Ginsburg, 1933
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 137                                                         Leach, 1814
## 140                                              Randall & Lourie, 2009
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
##       status
## 1   accepted
## 5   accepted
## 6   accepted
## 10  accepted
## 11  accepted
## 12  accepted
## 18  accepted
## 19  accepted
## 23  accepted
## 25  accepted
## 30  accepted
## 31  accepted
## 32  accepted
## 34  accepted
## 35  accepted
## 36  accepted
## 37  accepted
## 40  accepted
## 41  accepted
## 44  accepted
## 49  accepted
## 50  accepted
## 51  accepted
## 55  accepted
## 56  accepted
## 57  accepted
## 59  accepted
## 60  accepted
## 64  accepted
## 67  accepted
## 71  accepted
## 72  accepted
## 74  accepted
## 75  accepted
## 78  accepted
## 80  accepted
## 84  accepted
## 90  accepted
## 91  accepted
## 96  accepted
## 97  accepted
## 98  accepted
## 106 accepted
## 107 accepted
## 109 accepted
## 112 accepted
## 116 accepted
## 117 accepted
## 121 accepted
## 124 accepted
## 125 accepted
## 127 accepted
## 128 accepted
## 131 accepted
## 132 accepted
## 137 accepted
## 140 accepted
## 143 accepted
## 144 accepted
## 145 accepted
## 146 accepted
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                 target
## 1    126224                            Hippocampus
## 5   1525460                            Hippocampus
## 6    275182                Hippocampus abdominalis
## 7    306774                    Hippocampus agnesae
## 8    306775                      Hippocampus aimei
## 9    716772                      Hippocampus aimei
## 10   275183                     Hippocampus alatus
## 11   275184                  Hippocampus algiricus
## 12   275185                   Hippocampus angustus
## 13   306776                 Hippocampus antiquorum
## 14   306777                   Hippocampus antiquus
## 15   400954                      Hippocampus arnei
## 16   716773                      Hippocampus arnei
## 17   306778                  Hippocampus aterrimus
## 18   275186                   Hippocampus barbouri
## 19   275187                 Hippocampus bargibanti
## 20   713214                   Hippocampus bicuspis
## 21   275188                Hippocampus biocellatus
## 22   306779                   Hippocampus bleekeri
## 23   212238               Hippocampus borboniensis
## 24   306780             Hippocampus brachyrhynchus
## 25   275189                  Hippocampus breviceps
## 26   306781               Hippocampus brevirostris
## 27   306782                   Hippocampus brunneus
## 28   400945            Hippocampus cameleopardalis
## 29   400946            Hippocampus cameleopardalus
## 30   212233             Hippocampus camelopardalis
## 31   212234                   Hippocampus capensis
## 32   886550                   Hippocampus casscsio
## 33   306783                  Hippocampus chinensis
## 34   275190                   Hippocampus colemani
## 35   275191                      Hippocampus comes
## 36   275192                  Hippocampus coronatus
## 37   388711                Hippocampus curvicuspis
## 38   306784                      Hippocampus dahli
## 39   306785                     Hippocampus deanei
## 40   398432                   Hippocampus debelius
## 41   275193                     Hippocampus denise
## 42   306786               Hippocampus ecuadorensis
## 43   306787                  Hippocampus elongatus
## 44   159445                    Hippocampus erectus
## 45   306788                  Hippocampus erinaceus
## 46   154815                  Hippocampus europaeus
## 47   306789               Hippocampus fascicularis
## 48   713215               Hippocampus filamentosus
## 49   275194                    Hippocampus fisheri
## 50   212230                     Hippocampus fuscus
## 51   212230                     Hippocampus fuscus
## 52   306790              Hippocampus graciliformis
## 53   306791                   Hippocampus gracilis
## 54   306792              Hippocampus gracilissimus
## 55   275195                 Hippocampus grandiceps
## 56   154776                 Hippocampus guttulatus
## 57   248042  Hippocampus guttulatus microstephanus
## 58   323136  Hippocampus guttulatus multiannularis
## 59  1376208                      Hippocampus haema
## 60   275196                   Hippocampus hendriki
## 61   154458                 Hippocampus heptagonus
## 62   306793                Hippocampus hildebrandi
## 63   306794                    Hippocampus hilonis
## 64   127380                Hippocampus hippocampus
## 65   322937 Hippocampus hippocampus microcoronatus
## 66   322938 Hippocampus hippocampus microstephanus
## 67   212239                    Hippocampus histrix
## 68   306795                      Hippocampus horai
## 69   306796                  Hippocampus hudsonius
## 70   400949                    Hippocampus hystrix
## 71   275197                     Hippocampus ingens
## 72  1288522                   Hippocampus japapigu
## 73   306797                  Hippocampus japonicus
## 74   275198                   Hippocampus jayakari
## 75   275199                    Hippocampus jugumus
## 76   306798           Hippocampus kampylotrachelos
## 77   306799                     Hippocampus kaupii
## 78   212236                   Hippocampus kelloggi
## 79   306800                   Hippocampus kincaidi
## 80   212237                       Hippocampus kuda
## 81   323205        Hippocampus kuda multiannularis
## 82   306801              Hippocampus laevicaudatus
## 83   713217                      Hippocampus lenis
## 84   275200             Hippocampus lichtensteinii
## 85   154777               Hippocampus longirostris
## 86   306802                 Hippocampus manadensis
## 87   306803                   Hippocampus mannulus
## 88   306804                 Hippocampus marginalis
## 89   306805               Hippocampus melanospilos
## 90   275201                   Hippocampus minotaur
## 91   275202                   Hippocampus mohnikei
## 92   306806                Hippocampus moluccensis
## 93   400952                    Hippocampus monckei
## 94   400951                   Hippocampus monickei
## 95   400953                    Hippocampus monikei
## 96   275203            Hippocampus montebelloensis
## 97   275204                Hippocampus multispinus
## 98  1437127                       Hippocampus nalu
## 99   306807                 Hippocampus natalensis
## 100  306808             Hippocampus novaehebudorum
## 101  400955             Hippocampus novaehollandae
## 102  306809            Hippocampus novaehollandiae
## 103  713212                   Hippocampus obscurus
## 104  713213                   Hippocampus obscurus
## 105  306810                    Hippocampus obtusus
## 106  712534                  Hippocampus paradoxus
## 107  275205                Hippocampus patagonicus
## 108  400947                 Hippocampus pentagonus
## 109  306811                 Hippocampus planifrons
## 110  306812                      Hippocampus poeyi
## 111  306813                 Hippocampus polytaenia
## 112  398433                    Hippocampus pontohi
## 113  275206                   Hippocampus procerus
## 114  306814                Hippocampus punctulatus
## 115  306815                Hippocampus punctulatus
## 116  388712                   Hippocampus pusillus
## 117  275207             Hippocampus queenslandicus
## 118  306816                       Hippocampus raji
## 119  127381                  Hippocampus ramulosus
## 120  306817                    Hippocampus regulus
## 121  159446                      Hippocampus reidi
## 122  306818               Hippocampus rhynchomacer
## 123  306819                 Hippocampus rosamondae
## 124  398434                   Hippocampus satomiae
## 125  275208               Hippocampus semispinosus
## 126  398435                   Hippocampus severnsi
## 127  275209                   Hippocampus sindonis
## 128  275210              Hippocampus spinosissimus
## 129  306820                   Hippocampus stylifer
## 130  306821               Hippocampus subcoronatus
## 131  275211               Hippocampus subelongatus
## 132  306822                  Hippocampus suezensis
## 133  306823                   Hippocampus taeniops
## 134  306824               Hippocampus taeniopterus
## 135  306825                  Hippocampus takakurae
## 136  306826                Hippocampus tetragonous
## 137  212232               Hippocampus trimaculatus
## 138  306827                    Hippocampus tristis
## 139  306828               Hippocampus tuberculatus
## 140  474956                       Hippocampus tyro
## 141  306829                   Hippocampus villosus
## 142  306830                   Hippocampus vulgaris
## 143  398436                 Hippocampus waleananus
## 144  212235                     Hippocampus whitei
## 145  275212                      Hippocampus zebra
## 146  275213                   Hippocampus zosterae
## 2    843450                                   <NA>
## 3    843451                                   <NA>
## 4    843452                                   <NA>
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 7                                                          Fowler, 1907
## 8                                                           Roule, 1916
## 9                                                           Roule, 1916
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 13                                                          Leach, 1814
## 14                                                          Risso, 1827
## 15                                                          Roule, 1916
## 16                                                          Roule, 1916
## 17                                                Jordan & Snyder, 1902
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 20                                                           Kaup, 1856
## 21                                                         Kuiter, 2001
## 22                                                         Fowler, 1907
## 23                                                        Duméril, 1870
## 24                                                        Duncker, 1914
## 25                                                         Peters, 1869
## 26                                                         Schinz, 1822
## 27                                                           Bean, 1906
## 28                                                       Bianconi, 1854
## 29                                                       Bianconi, 1854
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 33                                                     Basilewsky, 1855
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 38                                                         Ogilby, 1908
## 39                                                        Duméril, 1861
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 42                                                         Fowler, 1922
## 43                                                      Castelnau, 1873
## 44                                                          Perry, 1810
## 45                                                        Günther, 1870
## 46                                                       Ginsburg, 1933
## 47                                                           Kaup, 1856
## 48                                                        Duméril, 1870
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 52                                                      McCulloch, 1911
## 53                                                           Gill, 1862
## 54                                            Temminck & Schlegel, 1850
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 58                                                       Ginsburg, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 61                                                     Rafinesque, 1810
## 62                                                       Ginsburg, 1933
## 63                                              Jordan & Evermann, 1903
## 64                                                     (Linnaeus, 1758)
## 65                                                    Slastenenko, 1938
## 66                                                    Slastenenko, 1937
## 67                                                           Kaup, 1856
## 68                                                        Duncker, 1926
## 69                                                          DeKay, 1842
## 70                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 73                                                           Kaup, 1856
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 76                                                        Bleeker, 1854
## 77                                                        Duméril, 1870
## 78                                                Jordan & Snyder, 1901
## 79                                             Townsend & Barbour, 1906
## 80                                                        Bleeker, 1852
## 81                                                            Raj, 1941
## 82                                                           Kaup, 1856
## 83                                                         De Vis, 1908
## 84                                                           Kaup, 1856
## 85                                                         Schinz, 1822
## 86                                                        Bleeker, 1856
## 87                                                         Cantor, 1849
## 88                                                           Kaup, 1856
## 89                                                        Bleeker, 1854
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 92                                                        Bleeker, 1852
## 93                                                        Bleeker, 1853
## 94                                                        Bleeker, 1853
## 95                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 99                                                      von Bonde, 1923
## 100                                                        Fowler, 1944
## 101                                                  Steindachner, 1866
## 102                                                  Steindachner, 1866
## 103                                          Hemprich & Ehrenberg, 1856
## 104                                                     Ehrenberg, 1871
## 105                                                      Ginsburg, 1933
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 108                                                    Rafinesque, 1810
## 109                                                        Peters, 1877
## 110                                                 Howell Rivero, 1934
## 111                                                       Bleeker, 1854
## 112                                               Lourie & Kuiter, 2008
## 113                                                        Kuiter, 2001
## 114                                                     Guichenot, 1853
## 115                                                          Kaup, 1856
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 118                                                       Whitley, 1955
## 119                                                         Leach, 1814
## 120                                                      Ginsburg, 1933
## 121                                                      Ginsburg, 1933
## 122                                                       Duméril, 1870
## 123                                                       Borodin, 1928
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 126                                               Lourie & Kuiter, 2008
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 129                                              Jordan & Gilbert, 1882
## 130                                                       Günther, 1866
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 133                                                        Fowler, 1904
## 134                                                       Bleeker, 1852
## 135                                                        Tanaka, 1916
## 136                                                    (Mitchill, 1814)
## 137                                                         Leach, 1814
## 138                                                     Castelnau, 1872
## 139                                                     Castelnau, 1875
## 140                                              Randall & Lourie, 2009
## 141                                                       Günther, 1880
## 142                                                       Cloquet, 1821
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
## 2                                                                  <NA>
## 3                                                                  <NA>
## 4                                                                  <NA>
##          status
## 1      accepted
## 5      accepted
## 6      accepted
## 7    unaccepted
## 8    unaccepted
## 9    unaccepted
## 10     accepted
## 11     accepted
## 12     accepted
## 13   unaccepted
## 14   unaccepted
## 15   unaccepted
## 16   unaccepted
## 17   unaccepted
## 18     accepted
## 19     accepted
## 20   unaccepted
## 21   unaccepted
## 22   unaccepted
## 23     accepted
## 24   unaccepted
## 25     accepted
## 26   unaccepted
## 27   unaccepted
## 28   unaccepted
## 29   unaccepted
## 30     accepted
## 31     accepted
## 32     accepted
## 33   unaccepted
## 34     accepted
## 35     accepted
## 36     accepted
## 37     accepted
## 38   unaccepted
## 39   unaccepted
## 40     accepted
## 41     accepted
## 42   unaccepted
## 43   unaccepted
## 44     accepted
## 45   unaccepted
## 46   unaccepted
## 47   unaccepted
## 48   unaccepted
## 49     accepted
## 50     accepted
## 51     accepted
## 52   unaccepted
## 53   unaccepted
## 54   unaccepted
## 55     accepted
## 56     accepted
## 57     accepted
## 58   unaccepted
## 59     accepted
## 60     accepted
## 61   unaccepted
## 62   unaccepted
## 63   unaccepted
## 64     accepted
## 65   unaccepted
## 66   unaccepted
## 67     accepted
## 68   unaccepted
## 69   unaccepted
## 70   unaccepted
## 71     accepted
## 72     accepted
## 73   unaccepted
## 74     accepted
## 75     accepted
## 76   unaccepted
## 77   unaccepted
## 78     accepted
## 79   unaccepted
## 80     accepted
## 81   unaccepted
## 82   unaccepted
## 83   unaccepted
## 84     accepted
## 85   unaccepted
## 86   unaccepted
## 87   unaccepted
## 88   unaccepted
## 89   unaccepted
## 90     accepted
## 91     accepted
## 92   unaccepted
## 93   unaccepted
## 94   unaccepted
## 95   unaccepted
## 96     accepted
## 97     accepted
## 98     accepted
## 99   unaccepted
## 100  unaccepted
## 101  unaccepted
## 102  unaccepted
## 103  unaccepted
## 104  unaccepted
## 105  unaccepted
## 106    accepted
## 107    accepted
## 108  unaccepted
## 109    accepted
## 110  unaccepted
## 111  unaccepted
## 112    accepted
## 113  unaccepted
## 114  unaccepted
## 115  unaccepted
## 116    accepted
## 117    accepted
## 118  unaccepted
## 119  unaccepted
## 120  unaccepted
## 121    accepted
## 122  unaccepted
## 123  unaccepted
## 124    accepted
## 125    accepted
## 126  unaccepted
## 127    accepted
## 128    accepted
## 129  unaccepted
## 130  unaccepted
## 131    accepted
## 132    accepted
## 133  unaccepted
## 134  unaccepted
## 135  unaccepted
## 136  unaccepted
## 137    accepted
## 138  unaccepted
## 139  unaccepted
## 140    accepted
## 141  unaccepted
## 142  unaccepted
## 143    accepted
## 144    accepted
## 145    accepted
## 146    accepted
## 2   quarantined
## 3   quarantined
## 4   quarantined
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                target
## 1    126224                           Hippocampus
## 5   1525460                           Hippocampus
## 6    275182               Hippocampus abdominalis
## 10   275183                    Hippocampus alatus
## 11   275184                 Hippocampus algiricus
## 12   275185                  Hippocampus angustus
## 18   275186                  Hippocampus barbouri
## 19   275187                Hippocampus bargibanti
## 23   212238              Hippocampus borboniensis
## 25   275189                 Hippocampus breviceps
## 30   212233            Hippocampus camelopardalis
## 31   212234                  Hippocampus capensis
## 32   886550                  Hippocampus casscsio
## 34   275190                  Hippocampus colemani
## 35   275191                     Hippocampus comes
## 36   275192                 Hippocampus coronatus
## 37   388711               Hippocampus curvicuspis
## 40   398432                  Hippocampus debelius
## 41   275193                    Hippocampus denise
## 44   159445                   Hippocampus erectus
## 49   275194                   Hippocampus fisheri
## 50   212230                    Hippocampus fuscus
## 51   212230                    Hippocampus fuscus
## 55   275195                Hippocampus grandiceps
## 56   154776                Hippocampus guttulatus
## 57   248042 Hippocampus guttulatus microstephanus
## 59  1376208                     Hippocampus haema
## 60   275196                  Hippocampus hendriki
## 64   127380               Hippocampus hippocampus
## 67   212239                   Hippocampus histrix
## 71   275197                    Hippocampus ingens
## 72  1288522                  Hippocampus japapigu
## 74   275198                  Hippocampus jayakari
## 75   275199                   Hippocampus jugumus
## 78   212236                  Hippocampus kelloggi
## 80   212237                      Hippocampus kuda
## 84   275200            Hippocampus lichtensteinii
## 90   275201                  Hippocampus minotaur
## 91   275202                  Hippocampus mohnikei
## 96   275203           Hippocampus montebelloensis
## 97   275204               Hippocampus multispinus
## 98  1437127                      Hippocampus nalu
## 106  712534                 Hippocampus paradoxus
## 107  275205               Hippocampus patagonicus
## 109  306811                Hippocampus planifrons
## 112  398433                   Hippocampus pontohi
## 116  388712                  Hippocampus pusillus
## 117  275207            Hippocampus queenslandicus
## 121  159446                     Hippocampus reidi
## 124  398434                  Hippocampus satomiae
## 125  275208              Hippocampus semispinosus
## 127  275209                  Hippocampus sindonis
## 128  275210             Hippocampus spinosissimus
## 131  275211              Hippocampus subelongatus
## 132  306822                 Hippocampus suezensis
## 137  212232              Hippocampus trimaculatus
## 140  474956                      Hippocampus tyro
## 143  398436                Hippocampus waleananus
## 144  212235                    Hippocampus whitei
## 145  275212                     Hippocampus zebra
## 146  275213                  Hippocampus zosterae
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 23                                                        Duméril, 1870
## 25                                                         Peters, 1869
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 44                                                          Perry, 1810
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 64                                                     (Linnaeus, 1758)
## 67                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 78                                                Jordan & Snyder, 1901
## 80                                                        Bleeker, 1852
## 84                                                           Kaup, 1856
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 109                                                        Peters, 1877
## 112                                               Lourie & Kuiter, 2008
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 121                                                      Ginsburg, 1933
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 137                                                         Leach, 1814
## 140                                              Randall & Lourie, 2009
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
##       status
## 1   accepted
## 5   accepted
## 6   accepted
## 10  accepted
## 11  accepted
## 12  accepted
## 18  accepted
## 19  accepted
## 23  accepted
## 25  accepted
## 30  accepted
## 31  accepted
## 32  accepted
## 34  accepted
## 35  accepted
## 36  accepted
## 37  accepted
## 40  accepted
## 41  accepted
## 44  accepted
## 49  accepted
## 50  accepted
## 51  accepted
## 55  accepted
## 56  accepted
## 57  accepted
## 59  accepted
## 60  accepted
## 64  accepted
## 67  accepted
## 71  accepted
## 72  accepted
## 74  accepted
## 75  accepted
## 78  accepted
## 80  accepted
## 84  accepted
## 90  accepted
## 91  accepted
## 96  accepted
## 97  accepted
## 98  accepted
## 106 accepted
## 107 accepted
## 109 accepted
## 112 accepted
## 116 accepted
## 117 accepted
## 121 accepted
## 124 accepted
## 125 accepted
## 127 accepted
## 128 accepted
## 131 accepted
## 132 accepted
## 137 accepted
## 140 accepted
## 143 accepted
## 144 accepted
## 145 accepted
## 146 accepted
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                 target
## 1    126224                            Hippocampus
## 5   1525460                            Hippocampus
## 6    275182                Hippocampus abdominalis
## 7    306774                    Hippocampus agnesae
## 8    306775                      Hippocampus aimei
## 9    716772                      Hippocampus aimei
## 10   275183                     Hippocampus alatus
## 11   275184                  Hippocampus algiricus
## 12   275185                   Hippocampus angustus
## 13   306776                 Hippocampus antiquorum
## 14   306777                   Hippocampus antiquus
## 15   400954                      Hippocampus arnei
## 16   716773                      Hippocampus arnei
## 17   306778                  Hippocampus aterrimus
## 18   275186                   Hippocampus barbouri
## 19   275187                 Hippocampus bargibanti
## 20   713214                   Hippocampus bicuspis
## 21   275188                Hippocampus biocellatus
## 22   306779                   Hippocampus bleekeri
## 23   212238               Hippocampus borboniensis
## 24   306780             Hippocampus brachyrhynchus
## 25   275189                  Hippocampus breviceps
## 26   306781               Hippocampus brevirostris
## 27   306782                   Hippocampus brunneus
## 28   400945            Hippocampus cameleopardalis
## 29   400946            Hippocampus cameleopardalus
## 30   212233             Hippocampus camelopardalis
## 31   212234                   Hippocampus capensis
## 32   886550                   Hippocampus casscsio
## 33   306783                  Hippocampus chinensis
## 34   275190                   Hippocampus colemani
## 35   275191                      Hippocampus comes
## 36   275192                  Hippocampus coronatus
## 37   388711                Hippocampus curvicuspis
## 38   306784                      Hippocampus dahli
## 39   306785                     Hippocampus deanei
## 40   398432                   Hippocampus debelius
## 41   275193                     Hippocampus denise
## 42   306786               Hippocampus ecuadorensis
## 43   306787                  Hippocampus elongatus
## 44   159445                    Hippocampus erectus
## 45   306788                  Hippocampus erinaceus
## 46   154815                  Hippocampus europaeus
## 47   306789               Hippocampus fascicularis
## 48   713215               Hippocampus filamentosus
## 49   275194                    Hippocampus fisheri
## 50   212230                     Hippocampus fuscus
## 51   212230                     Hippocampus fuscus
## 52   306790              Hippocampus graciliformis
## 53   306791                   Hippocampus gracilis
## 54   306792              Hippocampus gracilissimus
## 55   275195                 Hippocampus grandiceps
## 56   154776                 Hippocampus guttulatus
## 57   248042  Hippocampus guttulatus microstephanus
## 58   323136  Hippocampus guttulatus multiannularis
## 59  1376208                      Hippocampus haema
## 60   275196                   Hippocampus hendriki
## 61   154458                 Hippocampus heptagonus
## 62   306793                Hippocampus hildebrandi
## 63   306794                    Hippocampus hilonis
## 64   127380                Hippocampus hippocampus
## 65   322937 Hippocampus hippocampus microcoronatus
## 66   322938 Hippocampus hippocampus microstephanus
## 67   212239                    Hippocampus histrix
## 68   306795                      Hippocampus horai
## 69   306796                  Hippocampus hudsonius
## 70   400949                    Hippocampus hystrix
## 71   275197                     Hippocampus ingens
## 72  1288522                   Hippocampus japapigu
## 73   306797                  Hippocampus japonicus
## 74   275198                   Hippocampus jayakari
## 75   275199                    Hippocampus jugumus
## 76   306798           Hippocampus kampylotrachelos
## 77   306799                     Hippocampus kaupii
## 78   212236                   Hippocampus kelloggi
## 79   306800                   Hippocampus kincaidi
## 80   212237                       Hippocampus kuda
## 81   323205        Hippocampus kuda multiannularis
## 82   306801              Hippocampus laevicaudatus
## 83   713217                      Hippocampus lenis
## 84   275200             Hippocampus lichtensteinii
## 85   154777               Hippocampus longirostris
## 86   306802                 Hippocampus manadensis
## 87   306803                   Hippocampus mannulus
## 88   306804                 Hippocampus marginalis
## 89   306805               Hippocampus melanospilos
## 90   275201                   Hippocampus minotaur
## 91   275202                   Hippocampus mohnikei
## 92   306806                Hippocampus moluccensis
## 93   400952                    Hippocampus monckei
## 94   400951                   Hippocampus monickei
## 95   400953                    Hippocampus monikei
## 96   275203            Hippocampus montebelloensis
## 97   275204                Hippocampus multispinus
## 98  1437127                       Hippocampus nalu
## 99   306807                 Hippocampus natalensis
## 100  306808             Hippocampus novaehebudorum
## 101  400955             Hippocampus novaehollandae
## 102  306809            Hippocampus novaehollandiae
## 103  713212                   Hippocampus obscurus
## 104  713213                   Hippocampus obscurus
## 105  306810                    Hippocampus obtusus
## 106  712534                  Hippocampus paradoxus
## 107  275205                Hippocampus patagonicus
## 108  400947                 Hippocampus pentagonus
## 109  306811                 Hippocampus planifrons
## 110  306812                      Hippocampus poeyi
## 111  306813                 Hippocampus polytaenia
## 112  398433                    Hippocampus pontohi
## 113  275206                   Hippocampus procerus
## 114  306814                Hippocampus punctulatus
## 115  306815                Hippocampus punctulatus
## 116  388712                   Hippocampus pusillus
## 117  275207             Hippocampus queenslandicus
## 118  306816                       Hippocampus raji
## 119  127381                  Hippocampus ramulosus
## 120  306817                    Hippocampus regulus
## 121  159446                      Hippocampus reidi
## 122  306818               Hippocampus rhynchomacer
## 123  306819                 Hippocampus rosamondae
## 124  398434                   Hippocampus satomiae
## 125  275208               Hippocampus semispinosus
## 126  398435                   Hippocampus severnsi
## 127  275209                   Hippocampus sindonis
## 128  275210              Hippocampus spinosissimus
## 129  306820                   Hippocampus stylifer
## 130  306821               Hippocampus subcoronatus
## 131  275211               Hippocampus subelongatus
## 132  306822                  Hippocampus suezensis
## 133  306823                   Hippocampus taeniops
## 134  306824               Hippocampus taeniopterus
## 135  306825                  Hippocampus takakurae
## 136  306826                Hippocampus tetragonous
## 137  212232               Hippocampus trimaculatus
## 138  306827                    Hippocampus tristis
## 139  306828               Hippocampus tuberculatus
## 140  474956                       Hippocampus tyro
## 141  306829                   Hippocampus villosus
## 142  306830                   Hippocampus vulgaris
## 143  398436                 Hippocampus waleananus
## 144  212235                     Hippocampus whitei
## 145  275212                      Hippocampus zebra
## 146  275213                   Hippocampus zosterae
## 2    843450                                   <NA>
## 3    843451                                   <NA>
## 4    843452                                   <NA>
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 7                                                          Fowler, 1907
## 8                                                           Roule, 1916
## 9                                                           Roule, 1916
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 13                                                          Leach, 1814
## 14                                                          Risso, 1827
## 15                                                          Roule, 1916
## 16                                                          Roule, 1916
## 17                                                Jordan & Snyder, 1902
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 20                                                           Kaup, 1856
## 21                                                         Kuiter, 2001
## 22                                                         Fowler, 1907
## 23                                                        Duméril, 1870
## 24                                                        Duncker, 1914
## 25                                                         Peters, 1869
## 26                                                         Schinz, 1822
## 27                                                           Bean, 1906
## 28                                                       Bianconi, 1854
## 29                                                       Bianconi, 1854
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 33                                                     Basilewsky, 1855
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 38                                                         Ogilby, 1908
## 39                                                        Duméril, 1861
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 42                                                         Fowler, 1922
## 43                                                      Castelnau, 1873
## 44                                                          Perry, 1810
## 45                                                        Günther, 1870
## 46                                                       Ginsburg, 1933
## 47                                                           Kaup, 1856
## 48                                                        Duméril, 1870
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 52                                                      McCulloch, 1911
## 53                                                           Gill, 1862
## 54                                            Temminck & Schlegel, 1850
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 58                                                       Ginsburg, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 61                                                     Rafinesque, 1810
## 62                                                       Ginsburg, 1933
## 63                                              Jordan & Evermann, 1903
## 64                                                     (Linnaeus, 1758)
## 65                                                    Slastenenko, 1938
## 66                                                    Slastenenko, 1937
## 67                                                           Kaup, 1856
## 68                                                        Duncker, 1926
## 69                                                          DeKay, 1842
## 70                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 73                                                           Kaup, 1856
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 76                                                        Bleeker, 1854
## 77                                                        Duméril, 1870
## 78                                                Jordan & Snyder, 1901
## 79                                             Townsend & Barbour, 1906
## 80                                                        Bleeker, 1852
## 81                                                            Raj, 1941
## 82                                                           Kaup, 1856
## 83                                                         De Vis, 1908
## 84                                                           Kaup, 1856
## 85                                                         Schinz, 1822
## 86                                                        Bleeker, 1856
## 87                                                         Cantor, 1849
## 88                                                           Kaup, 1856
## 89                                                        Bleeker, 1854
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 92                                                        Bleeker, 1852
## 93                                                        Bleeker, 1853
## 94                                                        Bleeker, 1853
## 95                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 99                                                      von Bonde, 1923
## 100                                                        Fowler, 1944
## 101                                                  Steindachner, 1866
## 102                                                  Steindachner, 1866
## 103                                          Hemprich & Ehrenberg, 1856
## 104                                                     Ehrenberg, 1871
## 105                                                      Ginsburg, 1933
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 108                                                    Rafinesque, 1810
## 109                                                        Peters, 1877
## 110                                                 Howell Rivero, 1934
## 111                                                       Bleeker, 1854
## 112                                               Lourie & Kuiter, 2008
## 113                                                        Kuiter, 2001
## 114                                                     Guichenot, 1853
## 115                                                          Kaup, 1856
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 118                                                       Whitley, 1955
## 119                                                         Leach, 1814
## 120                                                      Ginsburg, 1933
## 121                                                      Ginsburg, 1933
## 122                                                       Duméril, 1870
## 123                                                       Borodin, 1928
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 126                                               Lourie & Kuiter, 2008
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 129                                              Jordan & Gilbert, 1882
## 130                                                       Günther, 1866
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 133                                                        Fowler, 1904
## 134                                                       Bleeker, 1852
## 135                                                        Tanaka, 1916
## 136                                                    (Mitchill, 1814)
## 137                                                         Leach, 1814
## 138                                                     Castelnau, 1872
## 139                                                     Castelnau, 1875
## 140                                              Randall & Lourie, 2009
## 141                                                       Günther, 1880
## 142                                                       Cloquet, 1821
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
## 2                                                                  <NA>
## 3                                                                  <NA>
## 4                                                                  <NA>
##          status
## 1      accepted
## 5      accepted
## 6      accepted
## 7    unaccepted
## 8    unaccepted
## 9    unaccepted
## 10     accepted
## 11     accepted
## 12     accepted
## 13   unaccepted
## 14   unaccepted
## 15   unaccepted
## 16   unaccepted
## 17   unaccepted
## 18     accepted
## 19     accepted
## 20   unaccepted
## 21   unaccepted
## 22   unaccepted
## 23     accepted
## 24   unaccepted
## 25     accepted
## 26   unaccepted
## 27   unaccepted
## 28   unaccepted
## 29   unaccepted
## 30     accepted
## 31     accepted
## 32     accepted
## 33   unaccepted
## 34     accepted
## 35     accepted
## 36     accepted
## 37     accepted
## 38   unaccepted
## 39   unaccepted
## 40     accepted
## 41     accepted
## 42   unaccepted
## 43   unaccepted
## 44     accepted
## 45   unaccepted
## 46   unaccepted
## 47   unaccepted
## 48   unaccepted
## 49     accepted
## 50     accepted
## 51     accepted
## 52   unaccepted
## 53   unaccepted
## 54   unaccepted
## 55     accepted
## 56     accepted
## 57     accepted
## 58   unaccepted
## 59     accepted
## 60     accepted
## 61   unaccepted
## 62   unaccepted
## 63   unaccepted
## 64     accepted
## 65   unaccepted
## 66   unaccepted
## 67     accepted
## 68   unaccepted
## 69   unaccepted
## 70   unaccepted
## 71     accepted
## 72     accepted
## 73   unaccepted
## 74     accepted
## 75     accepted
## 76   unaccepted
## 77   unaccepted
## 78     accepted
## 79   unaccepted
## 80     accepted
## 81   unaccepted
## 82   unaccepted
## 83   unaccepted
## 84     accepted
## 85   unaccepted
## 86   unaccepted
## 87   unaccepted
## 88   unaccepted
## 89   unaccepted
## 90     accepted
## 91     accepted
## 92   unaccepted
## 93   unaccepted
## 94   unaccepted
## 95   unaccepted
## 96     accepted
## 97     accepted
## 98     accepted
## 99   unaccepted
## 100  unaccepted
## 101  unaccepted
## 102  unaccepted
## 103  unaccepted
## 104  unaccepted
## 105  unaccepted
## 106    accepted
## 107    accepted
## 108  unaccepted
## 109    accepted
## 110  unaccepted
## 111  unaccepted
## 112    accepted
## 113  unaccepted
## 114  unaccepted
## 115  unaccepted
## 116    accepted
## 117    accepted
## 118  unaccepted
## 119  unaccepted
## 120  unaccepted
## 121    accepted
## 122  unaccepted
## 123  unaccepted
## 124    accepted
## 125    accepted
## 126  unaccepted
## 127    accepted
## 128    accepted
## 129  unaccepted
## 130  unaccepted
## 131    accepted
## 132    accepted
## 133  unaccepted
## 134  unaccepted
## 135  unaccepted
## 136  unaccepted
## 137    accepted
## 138  unaccepted
## 139  unaccepted
## 140    accepted
## 141  unaccepted
## 142  unaccepted
## 143    accepted
## 144    accepted
## 145    accepted
## 146    accepted
## 2   quarantined
## 3   quarantined
## 4   quarantined
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                target
## 1    126224                           Hippocampus
## 5   1525460                           Hippocampus
## 6    275182               Hippocampus abdominalis
## 10   275183                    Hippocampus alatus
## 11   275184                 Hippocampus algiricus
## 12   275185                  Hippocampus angustus
## 18   275186                  Hippocampus barbouri
## 19   275187                Hippocampus bargibanti
## 23   212238              Hippocampus borboniensis
## 25   275189                 Hippocampus breviceps
## 30   212233            Hippocampus camelopardalis
## 31   212234                  Hippocampus capensis
## 32   886550                  Hippocampus casscsio
## 34   275190                  Hippocampus colemani
## 35   275191                     Hippocampus comes
## 36   275192                 Hippocampus coronatus
## 37   388711               Hippocampus curvicuspis
## 40   398432                  Hippocampus debelius
## 41   275193                    Hippocampus denise
## 44   159445                   Hippocampus erectus
## 49   275194                   Hippocampus fisheri
## 50   212230                    Hippocampus fuscus
## 51   212230                    Hippocampus fuscus
## 55   275195                Hippocampus grandiceps
## 56   154776                Hippocampus guttulatus
## 57   248042 Hippocampus guttulatus microstephanus
## 59  1376208                     Hippocampus haema
## 60   275196                  Hippocampus hendriki
## 64   127380               Hippocampus hippocampus
## 67   212239                   Hippocampus histrix
## 71   275197                    Hippocampus ingens
## 72  1288522                  Hippocampus japapigu
## 74   275198                  Hippocampus jayakari
## 75   275199                   Hippocampus jugumus
## 78   212236                  Hippocampus kelloggi
## 80   212237                      Hippocampus kuda
## 84   275200            Hippocampus lichtensteinii
## 90   275201                  Hippocampus minotaur
## 91   275202                  Hippocampus mohnikei
## 96   275203           Hippocampus montebelloensis
## 97   275204               Hippocampus multispinus
## 98  1437127                      Hippocampus nalu
## 106  712534                 Hippocampus paradoxus
## 107  275205               Hippocampus patagonicus
## 109  306811                Hippocampus planifrons
## 112  398433                   Hippocampus pontohi
## 116  388712                  Hippocampus pusillus
## 117  275207            Hippocampus queenslandicus
## 121  159446                     Hippocampus reidi
## 124  398434                  Hippocampus satomiae
## 125  275208              Hippocampus semispinosus
## 127  275209                  Hippocampus sindonis
## 128  275210             Hippocampus spinosissimus
## 131  275211              Hippocampus subelongatus
## 132  306822                 Hippocampus suezensis
## 137  212232              Hippocampus trimaculatus
## 140  474956                      Hippocampus tyro
## 143  398436                Hippocampus waleananus
## 144  212235                    Hippocampus whitei
## 145  275212                     Hippocampus zebra
## 146  275213                  Hippocampus zosterae
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 23                                                        Duméril, 1870
## 25                                                         Peters, 1869
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 44                                                          Perry, 1810
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 64                                                     (Linnaeus, 1758)
## 67                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 78                                                Jordan & Snyder, 1901
## 80                                                        Bleeker, 1852
## 84                                                           Kaup, 1856
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 109                                                        Peters, 1877
## 112                                               Lourie & Kuiter, 2008
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 121                                                      Ginsburg, 1933
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 137                                                         Leach, 1814
## 140                                              Randall & Lourie, 2009
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
##       status
## 1   accepted
## 5   accepted
## 6   accepted
## 10  accepted
## 11  accepted
## 12  accepted
## 18  accepted
## 19  accepted
## 23  accepted
## 25  accepted
## 30  accepted
## 31  accepted
## 32  accepted
## 34  accepted
## 35  accepted
## 36  accepted
## 37  accepted
## 40  accepted
## 41  accepted
## 44  accepted
## 49  accepted
## 50  accepted
## 51  accepted
## 55  accepted
## 56  accepted
## 57  accepted
## 59  accepted
## 60  accepted
## 64  accepted
## 67  accepted
## 71  accepted
## 72  accepted
## 74  accepted
## 75  accepted
## 78  accepted
## 80  accepted
## 84  accepted
## 90  accepted
## 91  accepted
## 96  accepted
## 97  accepted
## 98  accepted
## 106 accepted
## 107 accepted
## 109 accepted
## 112 accepted
## 116 accepted
## 117 accepted
## 121 accepted
## 124 accepted
## 125 accepted
## 127 accepted
## 128 accepted
## 131 accepted
## 132 accepted
## 137 accepted
## 140 accepted
## 143 accepted
## 144 accepted
## 145 accepted
## 146 accepted
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
##          id                                 target
## 1    126224                            Hippocampus
## 5   1525460                            Hippocampus
## 6    275182                Hippocampus abdominalis
## 7    306774                    Hippocampus agnesae
## 8    306775                      Hippocampus aimei
## 9    716772                      Hippocampus aimei
## 10   275183                     Hippocampus alatus
## 11   275184                  Hippocampus algiricus
## 12   275185                   Hippocampus angustus
## 13   306776                 Hippocampus antiquorum
## 14   306777                   Hippocampus antiquus
## 15   400954                      Hippocampus arnei
## 16   716773                      Hippocampus arnei
## 17   306778                  Hippocampus aterrimus
## 18   275186                   Hippocampus barbouri
## 19   275187                 Hippocampus bargibanti
## 20   713214                   Hippocampus bicuspis
## 21   275188                Hippocampus biocellatus
## 22   306779                   Hippocampus bleekeri
## 23   212238               Hippocampus borboniensis
## 24   306780             Hippocampus brachyrhynchus
## 25   275189                  Hippocampus breviceps
## 26   306781               Hippocampus brevirostris
## 27   306782                   Hippocampus brunneus
## 28   400945            Hippocampus cameleopardalis
## 29   400946            Hippocampus cameleopardalus
## 30   212233             Hippocampus camelopardalis
## 31   212234                   Hippocampus capensis
## 32   886550                   Hippocampus casscsio
## 33   306783                  Hippocampus chinensis
## 34   275190                   Hippocampus colemani
## 35   275191                      Hippocampus comes
## 36   275192                  Hippocampus coronatus
## 37   388711                Hippocampus curvicuspis
## 38   306784                      Hippocampus dahli
## 39   306785                     Hippocampus deanei
## 40   398432                   Hippocampus debelius
## 41   275193                     Hippocampus denise
## 42   306786               Hippocampus ecuadorensis
## 43   306787                  Hippocampus elongatus
## 44   159445                    Hippocampus erectus
## 45   306788                  Hippocampus erinaceus
## 46   154815                  Hippocampus europaeus
## 47   306789               Hippocampus fascicularis
## 48   713215               Hippocampus filamentosus
## 49   275194                    Hippocampus fisheri
## 50   212230                     Hippocampus fuscus
## 51   212230                     Hippocampus fuscus
## 52   306790              Hippocampus graciliformis
## 53   306791                   Hippocampus gracilis
## 54   306792              Hippocampus gracilissimus
## 55   275195                 Hippocampus grandiceps
## 56   154776                 Hippocampus guttulatus
## 57   248042  Hippocampus guttulatus microstephanus
## 58   323136  Hippocampus guttulatus multiannularis
## 59  1376208                      Hippocampus haema
## 60   275196                   Hippocampus hendriki
## 61   154458                 Hippocampus heptagonus
## 62   306793                Hippocampus hildebrandi
## 63   306794                    Hippocampus hilonis
## 64   127380                Hippocampus hippocampus
## 65   322937 Hippocampus hippocampus microcoronatus
## 66   322938 Hippocampus hippocampus microstephanus
## 67   212239                    Hippocampus histrix
## 68   306795                      Hippocampus horai
## 69   306796                  Hippocampus hudsonius
## 70   400949                    Hippocampus hystrix
## 71   275197                     Hippocampus ingens
## 72  1288522                   Hippocampus japapigu
## 73   306797                  Hippocampus japonicus
## 74   275198                   Hippocampus jayakari
## 75   275199                    Hippocampus jugumus
## 76   306798           Hippocampus kampylotrachelos
## 77   306799                     Hippocampus kaupii
## 78   212236                   Hippocampus kelloggi
## 79   306800                   Hippocampus kincaidi
## 80   212237                       Hippocampus kuda
## 81   323205        Hippocampus kuda multiannularis
## 82   306801              Hippocampus laevicaudatus
## 83   713217                      Hippocampus lenis
## 84   275200             Hippocampus lichtensteinii
## 85   154777               Hippocampus longirostris
## 86   306802                 Hippocampus manadensis
## 87   306803                   Hippocampus mannulus
## 88   306804                 Hippocampus marginalis
## 89   306805               Hippocampus melanospilos
## 90   275201                   Hippocampus minotaur
## 91   275202                   Hippocampus mohnikei
## 92   306806                Hippocampus moluccensis
## 93   400952                    Hippocampus monckei
## 94   400951                   Hippocampus monickei
## 95   400953                    Hippocampus monikei
## 96   275203            Hippocampus montebelloensis
## 97   275204                Hippocampus multispinus
## 98  1437127                       Hippocampus nalu
## 99   306807                 Hippocampus natalensis
## 100  306808             Hippocampus novaehebudorum
## 101  400955             Hippocampus novaehollandae
## 102  306809            Hippocampus novaehollandiae
## 103  713212                   Hippocampus obscurus
## 104  713213                   Hippocampus obscurus
## 105  306810                    Hippocampus obtusus
## 106  712534                  Hippocampus paradoxus
## 107  275205                Hippocampus patagonicus
## 108  400947                 Hippocampus pentagonus
## 109  306811                 Hippocampus planifrons
## 110  306812                      Hippocampus poeyi
## 111  306813                 Hippocampus polytaenia
## 112  398433                    Hippocampus pontohi
## 113  275206                   Hippocampus procerus
## 114  306814                Hippocampus punctulatus
## 115  306815                Hippocampus punctulatus
## 116  388712                   Hippocampus pusillus
## 117  275207             Hippocampus queenslandicus
## 118  306816                       Hippocampus raji
## 119  127381                  Hippocampus ramulosus
## 120  306817                    Hippocampus regulus
## 121  159446                      Hippocampus reidi
## 122  306818               Hippocampus rhynchomacer
## 123  306819                 Hippocampus rosamondae
## 124  398434                   Hippocampus satomiae
## 125  275208               Hippocampus semispinosus
## 126  398435                   Hippocampus severnsi
## 127  275209                   Hippocampus sindonis
## 128  275210              Hippocampus spinosissimus
## 129  306820                   Hippocampus stylifer
## 130  306821               Hippocampus subcoronatus
## 131  275211               Hippocampus subelongatus
## 132  306822                  Hippocampus suezensis
## 133  306823                   Hippocampus taeniops
## 134  306824               Hippocampus taeniopterus
## 135  306825                  Hippocampus takakurae
## 136  306826                Hippocampus tetragonous
## 137  212232               Hippocampus trimaculatus
## 138  306827                    Hippocampus tristis
## 139  306828               Hippocampus tuberculatus
## 140  474956                       Hippocampus tyro
## 141  306829                   Hippocampus villosus
## 142  306830                   Hippocampus vulgaris
## 143  398436                 Hippocampus waleananus
## 144  212235                     Hippocampus whitei
## 145  275212                      Hippocampus zebra
## 146  275213                   Hippocampus zosterae
## 2    843450                                   <NA>
## 3    843451                                   <NA>
## 4    843452                                   <NA>
##                                                               authority
## 1                                                      Rafinesque, 1810
## 5                                                      Rafinesque, 1810
## 6                                                          Lesson, 1827
## 7                                                          Fowler, 1907
## 8                                                           Roule, 1916
## 9                                                           Roule, 1916
## 10                                                         Kuiter, 2001
## 11                                                           Kaup, 1856
## 12                                                        Günther, 1870
## 13                                                          Leach, 1814
## 14                                                          Risso, 1827
## 15                                                          Roule, 1916
## 16                                                          Roule, 1916
## 17                                                Jordan & Snyder, 1902
## 18                                            Jordan & Richardson, 1908
## 19                                                        Whitley, 1970
## 20                                                           Kaup, 1856
## 21                                                         Kuiter, 2001
## 22                                                         Fowler, 1907
## 23                                                        Duméril, 1870
## 24                                                        Duncker, 1914
## 25                                                         Peters, 1869
## 26                                                         Schinz, 1822
## 27                                                           Bean, 1906
## 28                                                       Bianconi, 1854
## 29                                                       Bianconi, 1854
## 30                                                       Bianconi, 1854
## 31                                                      Boulenger, 1900
## 32                                         Zhang, Qin, Wang & Lin, 2016
## 33                                                     Basilewsky, 1855
## 34                                                         Kuiter, 2003
## 35                                                         Cantor, 1849
## 36                                            Temminck & Schlegel, 1850
## 37                                                         Fricke, 2004
## 38                                                         Ogilby, 1908
## 39                                                        Duméril, 1861
## 40                                                 Gomon & Kuiter, 2009
## 41                                               Lourie & Randall, 2003
## 42                                                         Fowler, 1922
## 43                                                      Castelnau, 1873
## 44                                                          Perry, 1810
## 45                                                        Günther, 1870
## 46                                                       Ginsburg, 1933
## 47                                                           Kaup, 1856
## 48                                                        Duméril, 1870
## 49                                              Jordan & Evermann, 1903
## 50                                                        Rüppell, 1838
## 51                                                        Rüppell, 1838
## 52                                                      McCulloch, 1911
## 53                                                           Gill, 1862
## 54                                            Temminck & Schlegel, 1850
## 55                                                         Kuiter, 2001
## 56                                                         Cuvier, 1829
## 57                                                    Slastenenko, 1937
## 58                                                       Ginsburg, 1937
## 59                                          Han, Kim, Kai & Senou, 2017
## 60                                                         Kuiter, 2001
## 61                                                     Rafinesque, 1810
## 62                                                       Ginsburg, 1933
## 63                                              Jordan & Evermann, 1903
## 64                                                     (Linnaeus, 1758)
## 65                                                    Slastenenko, 1938
## 66                                                    Slastenenko, 1937
## 67                                                           Kaup, 1856
## 68                                                        Duncker, 1926
## 69                                                          DeKay, 1842
## 70                                                           Kaup, 1856
## 71                                                         Girard, 1858
## 72                     Short, Smith, Motomura, Harasti & Hamilton, 2018
## 73                                                           Kaup, 1856
## 74                                                      Boulenger, 1900
## 75                                                         Kuiter, 2001
## 76                                                        Bleeker, 1854
## 77                                                        Duméril, 1870
## 78                                                Jordan & Snyder, 1901
## 79                                             Townsend & Barbour, 1906
## 80                                                        Bleeker, 1852
## 81                                                            Raj, 1941
## 82                                                           Kaup, 1856
## 83                                                         De Vis, 1908
## 84                                                           Kaup, 1856
## 85                                                         Schinz, 1822
## 86                                                        Bleeker, 1856
## 87                                                         Cantor, 1849
## 88                                                           Kaup, 1856
## 89                                                        Bleeker, 1854
## 90                                                          Gomon, 1997
## 91                                                        Bleeker, 1853
## 92                                                        Bleeker, 1852
## 93                                                        Bleeker, 1853
## 94                                                        Bleeker, 1853
## 95                                                        Bleeker, 1853
## 96                                                         Kuiter, 2001
## 97                                                         Kuiter, 2001
## 98  Short, Claassens, Smith, De Brauwer, Hamilton, Stat & Harasti, 2020
## 99                                                      von Bonde, 1923
## 100                                                        Fowler, 1944
## 101                                                  Steindachner, 1866
## 102                                                  Steindachner, 1866
## 103                                          Hemprich & Ehrenberg, 1856
## 104                                                     Ehrenberg, 1871
## 105                                                      Ginsburg, 1933
## 106                                                Foster & Gomon, 2010
## 107                                         Piacentino & Luzzatto, 2004
## 108                                                    Rafinesque, 1810
## 109                                                        Peters, 1877
## 110                                                 Howell Rivero, 1934
## 111                                                       Bleeker, 1854
## 112                                               Lourie & Kuiter, 2008
## 113                                                        Kuiter, 2001
## 114                                                     Guichenot, 1853
## 115                                                          Kaup, 1856
## 116                                                        Fricke, 2004
## 117                                                         Horne, 2001
## 118                                                       Whitley, 1955
## 119                                                         Leach, 1814
## 120                                                      Ginsburg, 1933
## 121                                                      Ginsburg, 1933
## 122                                                       Duméril, 1870
## 123                                                       Borodin, 1928
## 124                                               Lourie & Kuiter, 2008
## 125                                                        Kuiter, 2001
## 126                                               Lourie & Kuiter, 2008
## 127                                               Jordan & Snyder, 1901
## 128                                                         Weber, 1913
## 129                                              Jordan & Gilbert, 1882
## 130                                                       Günther, 1866
## 131                                                     Castelnau, 1873
## 132                                                       Duncker, 1940
## 133                                                        Fowler, 1904
## 134                                                       Bleeker, 1852
## 135                                                        Tanaka, 1916
## 136                                                    (Mitchill, 1814)
## 137                                                         Leach, 1814
## 138                                                     Castelnau, 1872
## 139                                                     Castelnau, 1875
## 140                                              Randall & Lourie, 2009
## 141                                                       Günther, 1880
## 142                                                       Cloquet, 1821
## 143                                                Gomon & Kuiter, 2009
## 144                                                       Bleeker, 1855
## 145                                                       Whitley, 1964
## 146                                              Jordan & Gilbert, 1882
## 2                                                                  <NA>
## 3                                                                  <NA>
## 4                                                                  <NA>
##          status
## 1      accepted
## 5      accepted
## 6      accepted
## 7    unaccepted
## 8    unaccepted
## 9    unaccepted
## 10     accepted
## 11     accepted
## 12     accepted
## 13   unaccepted
## 14   unaccepted
## 15   unaccepted
## 16   unaccepted
## 17   unaccepted
## 18     accepted
## 19     accepted
## 20   unaccepted
## 21   unaccepted
## 22   unaccepted
## 23     accepted
## 24   unaccepted
## 25     accepted
## 26   unaccepted
## 27   unaccepted
## 28   unaccepted
## 29   unaccepted
## 30     accepted
## 31     accepted
## 32     accepted
## 33   unaccepted
## 34     accepted
## 35     accepted
## 36     accepted
## 37     accepted
## 38   unaccepted
## 39   unaccepted
## 40     accepted
## 41     accepted
## 42   unaccepted
## 43   unaccepted
## 44     accepted
## 45   unaccepted
## 46   unaccepted
## 47   unaccepted
## 48   unaccepted
## 49     accepted
## 50     accepted
## 51     accepted
## 52   unaccepted
## 53   unaccepted
## 54   unaccepted
## 55     accepted
## 56     accepted
## 57     accepted
## 58   unaccepted
## 59     accepted
## 60     accepted
## 61   unaccepted
## 62   unaccepted
## 63   unaccepted
## 64     accepted
## 65   unaccepted
## 66   unaccepted
## 67     accepted
## 68   unaccepted
## 69   unaccepted
## 70   unaccepted
## 71     accepted
## 72     accepted
## 73   unaccepted
## 74     accepted
## 75     accepted
## 76   unaccepted
## 77   unaccepted
## 78     accepted
## 79   unaccepted
## 80     accepted
## 81   unaccepted
## 82   unaccepted
## 83   unaccepted
## 84     accepted
## 85   unaccepted
## 86   unaccepted
## 87   unaccepted
## 88   unaccepted
## 89   unaccepted
## 90     accepted
## 91     accepted
## 92   unaccepted
## 93   unaccepted
## 94   unaccepted
## 95   unaccepted
## 96     accepted
## 97     accepted
## 98     accepted
## 99   unaccepted
## 100  unaccepted
## 101  unaccepted
## 102  unaccepted
## 103  unaccepted
## 104  unaccepted
## 105  unaccepted
## 106    accepted
## 107    accepted
## 108  unaccepted
## 109    accepted
## 110  unaccepted
## 111  unaccepted
## 112    accepted
## 113  unaccepted
## 114  unaccepted
## 115  unaccepted
## 116    accepted
## 117    accepted
## 118  unaccepted
## 119  unaccepted
## 120  unaccepted
## 121    accepted
## 122  unaccepted
## 123  unaccepted
## 124    accepted
## 125    accepted
## 126  unaccepted
## 127    accepted
## 128    accepted
## 129  unaccepted
## 130  unaccepted
## 131    accepted
## 132    accepted
## 133  unaccepted
## 134  unaccepted
## 135  unaccepted
## 136  unaccepted
## 137    accepted
## 138  unaccepted
## 139  unaccepted
## 140    accepted
## 141  unaccepted
## 142  unaccepted
## 143    accepted
## 144    accepted
## 145    accepted
## 146    accepted
## 2   quarantined
## 3   quarantined
## 4   quarantined
## 
## More than one WORMS ID found for taxon 'Hippocampus'!
## 
##                   Enter rownumber of taxon (other inputs will return 'NA'):
#combine original names, parsed data and WoRMS ID into one data frame
combined_dataframe <- data.frame()

for (i in 1:nrow(cleaned_data)) {
  cleaned_value <- cleaned_data[i,]
  canonical_value <- parsed_names[[i]]$canonical$full
  worms_id_value <- worms_ids[[i]][1]
  if (is.null(canonical_value)){
    canonical_value <- NA
  }
  temp_row <- data.frame(CleanedData = cleaned_value, CanonicalFull = canonical_value, WormsIDs = worms_id_value)
  combined_dataframe <- rbind(combined_dataframe, temp_row)
}

knitr::kable(head(combined_dataframe))
CleanedData.datelastmodified CleanedData.basisofrecord CleanedData.country CleanedData.stateprovince CleanedData.institutioncode CleanedData.collectioncode CleanedData.catalognumber CleanedData.kingdom CleanedData.phylum CleanedData.taxonclass CleanedData.ordem CleanedData.family CleanedData.genus CleanedData.species CleanedData.subspecies CleanedData.scientificname CleanedData.scientificnameauthor CleanedData.typestatus CleanedData.yearcollected CleanedData.monthcollected CleanedData.daycollected CleanedData.collector CleanedData.collectornumber CleanedData.fieldnumber CleanedData.julianday CleanedData.timeofday CleanedData.identifiedby CleanedData.yearidentified CleanedData.monthidentified CleanedData.dayidentified CleanedData.continentocean CleanedData.county CleanedData.locality CleanedData.verbatimlatitude CleanedData.verbatimlongitude CleanedData.longitude CleanedData.latitude CleanedData.coordinateprecision CleanedData.boundingbox CleanedData.minimumelevation CleanedData.maximumelevation CleanedData.minimumdepth CleanedData.maximumdepth CleanedData.sex CleanedData.preparationtype CleanedData.individualcount CleanedData.previouscatalognumber CleanedData.relationshiptype CleanedData.relatedcatalogitem CleanedData.notes CleanedData.barcode CleanedData.historyofdeposit CleanedData.depositor CleanedData.yeardeposited CleanedData.monthdeposited CleanedData.daydeposited CleanedData.isolatedfrom CleanedData.isolator CleanedData.isolationmethod CleanedData.conditionsforgrowth CleanedData.geneticallymodified CleanedData.genotype CleanedData.mutant CleanedData.race CleanedData.alternatestate CleanedData.strainproperties CleanedData.strainapplications CleanedData.formofsupply CleanedData.restrictions CleanedData.biologicalrisks CleanedData.pathogenicity CanonicalFull WormsIDs
2022-05-09T10:45:40 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 1848 Animalia Chordata NA NA Ephippidae Chaetodipterus faber NA Chaetodipterus faber (Broussonet, 1782) 2004 10 14 R. L. Teixeira NA NA NA NA R. L. Teixeira NA NA NA NA Vitória Ilha do Frade -20,319 -40,338 -40.33800 -20.31900 NA NA NA NA NA NA Álcool 70% 1 NA NA NA 20º19’09”S /40º20’16”W; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Chaetodipterus faber 159703
2022-05-09T10:45:35 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 3102 Animalia Chordata NA NA Apogonidae Astrapogon puncticulatus NA Astrapogon puncticulatus (Poey, 1867) 2009 5 NA H. T. Pinheiro NA NA NA NA H. T. Pinheiro NA NA NA NA Ponta da Calheta, Ilha da Trindade -20,512 -29,317 -29.31700 -20.51200 NA NA NA NA NA NA Formol 10% -> Álcool 70% 2 NA NA NA Coletado com puçá. Coordenadas estimadas posteriormente no Google Earth.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Astrapogon puncticulatus 279773
2022-05-09T10:45:40 PreservedSpecimen Brasil Pernambuco UFES CIUFES 2525 Animalia Chordata NA NA Chaenopsidae Emblemariopsis aff. carib NA Emblemariopsis aff. carib Victor, 2010 2013 4 7 R. M. Macieira & T. Simon NA NA NA NA R. M. Macieira NA NA NA NA Fernando de Noronha Pedras Secas -3,824 -32,409 -32.40900 -3.82400 NA NA NA NA NA NA Álcool 96% 1 NA NA NA Coletado com Puçá + Q. Coordenadas estimadas posteriormente no Google Earth; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Emblemariopsis 269061
2022-12-15T10:28:33 PreservedSpecimen 0 UFES CIUFES 4090 Animalia Chordata NA NA #VALUE! #VALUE! NA #Value! #value! NA NA NA NA NA NA NA NA NA NA NA 0.00000 0.00000 NA NA NA NA NA NA NA NA NA NA Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
2022-12-15T10:28:38 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 4542 Animalia Chordata NA NA Sciaenidae Larimus breviceps NA Larimus breviceps (Cuvier, 1830) 2022 2 7 F. Toscano et. al. NA NA NA NA H. Guabiroba & F. Toscano NA NA NA NA Aracruz Estuário Piraquê-açú, Aracruz - ES (externo) -1,956,795 -4,007,467 -40.07467 -19.56795 NA NA NA NA NA NA Formol 10% –> Álcool 70% 5 NA NA NA Arrasto com portas/ PA3U1/ Coordenadas obtidas in situ.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Larimus breviceps 276129
2022-12-15T10:28:34 PreservedSpecimen Brasil Espírito Santo UFES CIUFES 4578 Animalia Chordata NA NA Gobiidae Evorthodus lyricus NA Evorthodus lyricus (Girard, 1858) 2019 6 NA H. Guabiroba & F. Toscano NA NA NA NA H. Guabiroba NA NA NA NA Linhares Rio Doce, Regência, Estuário (Interno) -194,064 -40,069,420 -40.06942 -19.40640 NA NA NA NA NA NA Formol 10% –> Álcool 70% 36 NA NA NA Peneira + picaré / Coordenadas estimadas posteriormente no Google Earth.; Presente; NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Evorthodus lyricus 159743

Human Verification

Sometimes there are misspellings in the original text or incorrect OCR that can be searched for and fixed by hand. To do this, view the combined dataframe, search for unmatched species in WoRMS and add the ID, and remove rows that were not autoremoved in the earlier cleaning steps

combined_dataframe[1519,72:73] = c("Serranidae", 125561)
combined_dataframe[334,72:73] = c("Serranidae", 125561)
combined_dataframe[4423,72:73] = c("Serranidae", 125561)
combined_dataframe[4551,72:73] = c("Serranidae", 125561)
combined_dataframe[4534,72:73] = c("Serranidae", 125561)
combined_dataframe[2482,72:73] = c("Serranidae", 125561)
combined_dataframe[4264,72:73] = c("Serranidae", 125561)
combined_dataframe[4,72:73] = c('Chordata', 1821)
combined_dataframe[64,72:73] = c('Chordata', 1821)
combined_dataframe[164,72:73] = c('Chordata', 1821)
combined_dataframe[176,72:73] = c('Chordata', 1821)
combined_dataframe[185,72:73] = c('Chordata', 1821)
combined_dataframe[188,72:73] = c('Chordata', 1821)
combined_dataframe[241,72:73] = c('Chordata', 1821)
combined_dataframe[243,72:73] = c('Chordata', 1821)
combined_dataframe[271,72:73] = c('Chordata', 1821)
combined_dataframe[272,72:73] = c('Chordata', 1821)
combined_dataframe[297,72:73] = c('Chordata', 1821)
combined_dataframe[379,72:73] = c('Chordata', 1821)
combined_dataframe[408,72:73] = c('Chordata', 1821)
combined_dataframe[410,72:73] = c('Chordata', 1821)
combined_dataframe[430,72:73] = c('Chordata', 1821)
combined_dataframe[449,72:73] = c('Chordata', 1821)
combined_dataframe[494,72:73] = c('Chordata', 1821)
combined_dataframe[501,72:73] = c('Chordata', 1821)
combined_dataframe[580,72:73] = c('Chordata', 1821)
combined_dataframe[642,72:73] = c('Chordata', 1821)
combined_dataframe[675,72:73] = c('Chordata', 1821)
combined_dataframe[678,72:73] = c('Chordata', 1821)
combined_dataframe[690,72:73] = c('Chordata', 1821)
combined_dataframe[692,72:73] = c('Chordata', 1821)
combined_dataframe[728,72:73] = c('Chordata', 1821)
combined_dataframe[744,72:73] = c('Chordata', 1821)
combined_dataframe[769,72:73] = c('Chordata', 1821)
combined_dataframe[841,72:73] = c('Chordata', 1821)
combined_dataframe[881,72:73] = c('Chordata', 1821)
combined_dataframe[919,72:73] = c('Chordata', 1821)
combined_dataframe[937,72:73] = c('Chordata', 1821)
combined_dataframe[962,72:73] = c('Chordata', 1821)
combined_dataframe[991,72:73] = c('Chordata', 1821)
combined_dataframe[997,72:73] = c('Chordata', 1821)
combined_dataframe[1029,72:73] = c('Chordata', 1821)
combined_dataframe[1058,72:73] = c('Chordata', 1821)
combined_dataframe[1085,72:73] = c('Chordata', 1821)
combined_dataframe[1146,72:73] = c('Chordata', 1821)
combined_dataframe[1183,72:73] = c('Chordata', 1821)
combined_dataframe[1197,72:73] = c('Chordata', 1821)
combined_dataframe[1264,72:73] = c('Chordata', 1821)
combined_dataframe[1272,72:73] = c('Chordata', 1821)
combined_dataframe[1347,72:73] = c('Chordata', 1821)
combined_dataframe[1426,72:73] = c('Chordata', 1821)
combined_dataframe[1442,72:73] = c('Chordata', 1821)
combined_dataframe[1510,72:73] = c('Chordata', 1821)
combined_dataframe[1512,72:73] = c('Chordata', 1821)
combined_dataframe[1525,72:73] = c('Chordata', 1821)
combined_dataframe[1602,72:73] = c('Chordata', 1821)
combined_dataframe[1688,72:73] = c('Chordata', 1821)
combined_dataframe[1740,72:73] = c('Chordata', 1821)
combined_dataframe[1831,72:73] = c('Chordata', 1821)
combined_dataframe[1836,72:73] = c('Chordata', 1821)
combined_dataframe[1837,72:73] = c('Chordata', 1821)
combined_dataframe[1947,72:73] = c('Chordata', 1821)
combined_dataframe[1992,72:73] = c('Chordata', 1821)
combined_dataframe[2153,72:73] = c('Chordata', 1821)
combined_dataframe[2156,72:73] = c('Chordata', 1821)
combined_dataframe[2178,72:73] = c('Chordata', 1821)
combined_dataframe[2179,72:73] = c('Chordata', 1821)
combined_dataframe[2253,72:73] = c('Chordata', 1821)
combined_dataframe[2273,72:73] = c('Chordata', 1821)
combined_dataframe[2277,72:73] = c('Chordata', 1821)
combined_dataframe[2279,72:73] = c('Chordata', 1821)
combined_dataframe[2284,72:73] = c('Chordata', 1821)
combined_dataframe[2454,72:73] = c('Chordata', 1821)
combined_dataframe[2599,72:73] = c('Chordata', 1821)
combined_dataframe[2611,72:73] = c('Chordata', 1821)
combined_dataframe[2661,72:73] = c('Chordata', 1821)
combined_dataframe[2693,72:73] = c('Chordata', 1821)
combined_dataframe[2697,72:73] = c('Chordata', 1821)
combined_dataframe[2732,72:73] = c('Chordata', 1821)
combined_dataframe[2739,72:73] = c('Chordata', 1821)
combined_dataframe[2740,72:73] = c('Chordata', 1821)
combined_dataframe[2791,72:73] = c('Chordata', 1821)
combined_dataframe[2832,72:73] = c('Chordata', 1821)
combined_dataframe[2911,72:73] = c('Chordata', 1821)
combined_dataframe[2947,72:73] = c('Chordata', 1821)
combined_dataframe[3007,72:73] = c('Chordata', 1821)
combined_dataframe[3008,72:73] = c('Chordata', 1821)
combined_dataframe[3046,72:73] = c('Chordata', 1821)
combined_dataframe[3047,72:73] = c('Chordata', 1821)
combined_dataframe[3050,72:73] = c('Chordata', 1821)
combined_dataframe[3052,72:73] = c('Chordata', 1821)
combined_dataframe[3059,72:73] = c('Chordata', 1821)
combined_dataframe[3168,72:73] = c('Chordata', 1821)
combined_dataframe[3218,72:73] = c('Chordata', 1821)
combined_dataframe[3221,72:73] = c('Chordata', 1821)
combined_dataframe[3294,72:73] = c('Chordata', 1821)
combined_dataframe[3314,72:73] = c('Chordata', 1821)
combined_dataframe[3410,72:73] = c('Chordata', 1821)
combined_dataframe[3451,72:73] = c('Chordata', 1821)
combined_dataframe[3640,72:73] = c('Chordata', 1821)
combined_dataframe[3688,72:73] = c('Chordata', 1821)
combined_dataframe[3744,72:73] = c('Chordata', 1821)
combined_dataframe[3752,72:73] = c('Chordata', 1821)
combined_dataframe[3755,72:73] = c('Chordata', 1821)
combined_dataframe[3817,72:73] = c('Chordata', 1821)
combined_dataframe[3837,72:73] = c('Chordata', 1821)
combined_dataframe[4477,72:73] = c('Chordata', 1821)
combined_dataframe[4682,72:73] = c('Chordata', 1821)
combined_dataframe[4759,72:73] = c('Chordata', 1821)
combined_dataframe[4772,72:73] = c('Chordata', 1821)
combined_dataframe[4790,72:73] = c('Chordata', 1821)
combined_dataframe[4812,72:73] = c('Chordata', 1821)
combined_dataframe[4823,72:73] = c('Chordata', 1821)
combined_dataframe[4891,72:73] = c('Chordata', 1821)
combined_dataframe[4892,72:73] = c('Chordata', 1821)
combined_dataframe[4924,72:73] = c('Chordata', 1821)
combined_dataframe[4925,72:73] = c('Chordata', 1821)
combined_dataframe[4940,72:73] = c('Chordata', 1821)
combined_dataframe[4968,72:73] = c('Chordata', 1821)
combined_dataframe[4991,72:73] = c('Chordata', 1821)
combined_dataframe[5021,72:73] = c('Chordata', 1821)
combined_dataframe[5080,72:73] = c('Chordata', 1821)
combined_dataframe[5098,72:73] = c('Chordata', 1821)
combined_dataframe[5122,72:73] = c('Chordata', 1821)
combined_dataframe[5173,72:73] = c('Chordata', 1821)
combined_dataframe[5189,72:73] = c('Chordata', 1821)
combined_dataframe[5203,72:73] = c('Chordata', 1821)
combined_dataframe[5255,72:73] = c('Chordata', 1821)
combined_dataframe[5257,72:73] = c('Chordata', 1821)
combined_dataframe[5275,72:73] = c('Chordata', 1821)
combined_dataframe[5337,72:73] = c('Chordata', 1821)
combined_dataframe[5527,72:73] = c('Chordata', 1821)
combined_dataframe[5528,72:73] = c('Chordata', 1821)
combined_dataframe[5541,72:73] = c('Chordata', 1821)
combined_dataframe[4538,72:73] = c('Chlopsidae', 125426)
combined_dataframe[364,72:73] = c('Synodontidae', 125449)
combined_dataframe[1388,72:73] = c('Synodontidae', 125449)
combined_dataframe[3102,72:73] = c('Belonidae', 125451)
combined_dataframe[3611,72:73] = c('Holocentridae', 125458)
combined_dataframe[225,72:73] = c('Clupeidae', 125464)
combined_dataframe[1260,72:73] = c('Clupeidae', 125464)
combined_dataframe[2172,72:73] = c('Clupeidae', 125464)
combined_dataframe[878,72:73] = c('Engraulidae', 125465)
combined_dataframe[1087,72:73] = c('Engraulidae', 125465)
combined_dataframe[1312,72:73] = c('Engraulidae', 125465)
combined_dataframe[2043,72:73] = c('Engraulidae', 125465)
combined_dataframe[4846,72:73] = c('Engraulidae', 125465)
combined_dataframe[4967,72:73] = c('Engraulidae', 125465)
combined_dataframe[1083,72:73] = c('Antennariidae', 125484)
combined_dataframe[1338,72:73] = c('Antennariidae', 125484)
combined_dataframe[2793,72:73] = c('Antennariidae', 125484)
combined_dataframe[77,72:73] = c('Ophidiidae', 125505)
combined_dataframe[3722,72:73] = c('Ophidiidae', 125505)
combined_dataframe[898,72:73] = c('Apogonidae', 125518)
combined_dataframe[4625,72:73] = c('Blenniidae', 125519)
combined_dataframe[934,72:73] = c('Carangidae', 125523)
combined_dataframe[1320,72:73] = c('Carangidae', 125523)
combined_dataframe[1716,72:73] = c('Carangidae', 125523)
combined_dataframe[1912,72:73] = c('Carangidae', 125523)
combined_dataframe[2650,72:73] = c('Carangidae', 125523)
combined_dataframe[4826,72:73] = c('Carangidae', 125523)
combined_dataframe[1524,72:73] = c('Gobiidae', 125537)
combined_dataframe[1139,72:73] = c('Haemulidae', 125538)
combined_dataframe[1145,72:73] = c('Haemulidae', 125538)
combined_dataframe[1219,72:73] = c('Haemulidae', 125538)
combined_dataframe[1262,72:73] = c('Haemulidae', 125538)
combined_dataframe[2812,72:73] = c('Haemulidae', 125538)
combined_dataframe[3784,72:73] = c('Labridae', 125541)
combined_dataframe[5113,72:73] = c('Labridae', 125541)
combined_dataframe[1088,72:73] = c('Mugilidae', 125546)
combined_dataframe[1693,72:73] = c('Mugilidae', 125546)
combined_dataframe[2373,72:73] = c('Mugilidae', 125546)
combined_dataframe[2795,72:73] = c('Mugilidae', 125546)
combined_dataframe[3844,72:73] = c('Mugilidae', 125546)
combined_dataframe[4811,72:73] = c('Mugilidae', 125546)
combined_dataframe[4906,72:73] = c('Mugilidae', 125546)
combined_dataframe[5282,72:73] = c('Mugilidae', 125546)
combined_dataframe[2770,72:73] = c('Mullidae', 125547)
combined_dataframe[3387,72:73] = c('Mullidae', 125547)
combined_dataframe[1143,72:73] = c('Pomacentridae', 125553)
combined_dataframe[2756,72:73] = c('Pomacentridae', 125553)
combined_dataframe[3847,72:73] = c('Pomacentridae', 125553)
combined_dataframe[1805,72:73] = c('Scaridae', 125557)
combined_dataframe[2143,72:73] = c('Scaridae', 125557)
combined_dataframe[4881,72:73] = c('Scaridae', 125557)
combined_dataframe[1104,72:73] = c('Sciaenidae', 125558)
combined_dataframe[1293,72:73] = c('Sciaenidae', 125558)
combined_dataframe[1430,72:73] = c('Sciaenidae', 125558)
combined_dataframe[1491,72:73] = c('Sciaenidae', 125558)
combined_dataframe[1860,72:73] = c('Sciaenidae', 125558)
combined_dataframe[3178,72:73] = c('Sciaenidae', 125558)
combined_dataframe[3251,72:73] = c('Sciaenidae', 125558)
combined_dataframe[3332,72:73] = c('Sciaenidae', 125558)
combined_dataframe[3446,72:73] = c('Sciaenidae', 125558)
combined_dataframe[4862,72:73] = c('Sciaenidae', 125558)
combined_dataframe[1721,72:73] = c('Scombridae', 125559)
combined_dataframe[1827,72:73] = c('Serranidae', 125561)
combined_dataframe[1963,72:73] = c('Serranidae', 125561)
combined_dataframe[4112,72:73] = c('Tripterygiidae', 125572)
combined_dataframe[2333,72:73] = c('Polymixiidae', 125582)
combined_dataframe[3905,72:73] = c('Scorpaenidae', 125595)
combined_dataframe[752,72:73] = c('Triglidae', 125598)
combined_dataframe[1151,72:73] = c('Triglidae', 125598)
combined_dataframe[1252,72:73] = c('Triglidae', 125598)
combined_dataframe[3388,72:73] = c('Triglidae', 125598)
combined_dataframe[4948,72:73] = c('Triglidae', 125598)
combined_dataframe[1745,72:73] = c('Syngnathidae', 125606)
combined_dataframe[3257,72:73] = c('Syngnathidae', 125606)
combined_dataframe[5339,72:73] = c('Syngnathidae', 125606)
combined_dataframe[5362,72:73] = c('Syngnathidae', 125606)
combined_dataframe[466,72:73] = c('Monacanthidae', 125610)
combined_dataframe[478,72:73] = c('Monacanthidae', 125610)
combined_dataframe[1007,72:73] = c('Monacanthidae', 125610)
combined_dataframe[1216,72:73] = c('Monacanthidae', 125610)
combined_dataframe[1410,72:73] = c('Monacanthidae', 125610)
combined_dataframe[1429,72:73] = c('Monacanthidae', 125610)
combined_dataframe[1434,72:73] = c('Monacanthidae', 125610)
combined_dataframe[3190,72:73] = c('Monacanthidae', 125610)
combined_dataframe[5382,72:73] = c('Monacanthidae', 125610)
combined_dataframe[5478,72:73] = c('Monacanthidae', 125610)
combined_dataframe[2560,72:73] = c('Ostraciidae', 125611)
combined_dataframe[3429,72:73] = c('Tetraodontidae', 125612)
combined_dataframe[3580,72:73] = c('Percophidae', 151412)
combined_dataframe[4089,72:73] = c('Chaenopsidae', 151415)
combined_dataframe[4095,72:73] = c('Chaenopsidae', 151415)
combined_dataframe[4110,72:73] = c('Chaenopsidae', 151415)
combined_dataframe[4111,72:73] = c('Chaenopsidae', 151415)
combined_dataframe[4113,72:73] = c('Dactyloscopidae', 151416)
combined_dataframe[633,72:73] = c('Centropomidae', 151431)
combined_dataframe[1898,72:73] = c('Centropomidae', 151431)
combined_dataframe[2447,72:73] = c('Centropomidae', 151431)
combined_dataframe[4798,72:73] = c('Centropomidae', 151431)
combined_dataframe[715,72:73] = c('Lutjanidae', 151453)
combined_dataframe[3197,72:73] = c('Lutjanidae', 151453)
combined_dataframe[3657,72:73] = c('Lutjanidae', 151453)
combined_dataframe[1234,72:73] = c('Gerreidae', 151456)
combined_dataframe[5068,72:73] = c('Gerreidae', 151456)
combined_dataframe[5352,72:73] = c('Gerreidae', 151456)
combined_dataframe[2721,72:73] = c('Pempheridae', 151460)
combined_dataframe[207,72:73] = c('Poeciliidae', 154389)
combined_dataframe[1238,72:73] = c('Poeciliidae', 154389)
combined_dataframe[1276,72:73] = c('Poeciliidae', 154389)
combined_dataframe[2694,72:73] = c('Poeciliidae', 154389)
combined_dataframe[2830,72:73] = c('Poeciliidae', 154389)
combined_dataframe[4734,72:73] = c('Poeciliidae', 154389)
combined_dataframe[5201,72:73] = c('Poeciliidae', 154389)
combined_dataframe[5462,72:73] = c('Poeciliidae', 154389)
combined_dataframe[3621,72:73] = c('Fistulariidae', 154577)
combined_dataframe[987,72:73] = c('Loricariidae', 154623)
combined_dataframe[3591,72:73] = c('Loricariidae', 154623)
combined_dataframe[2794,72:73] = c('Ariidae', 154659)
combined_dataframe[3661,72:73] = c('Ariidae', 154659)
combined_dataframe[3055,72:73] = c('Atherinopsidae', 266995)
combined_dataframe[354,72:73] = c('Crenicichla', 268872)
combined_dataframe[3949,72:73] = c('Microlepidogaster', 269861)
combined_dataframe[834,72:73] = c('Parexocoetus hillianus', 272173)
combined_dataframe[4595,72:73] = c('Apogon americanus', 272972)
combined_dataframe[4629,72:73] = c('Pempheris poeyi', 277066)
combined_dataframe[4630,72:73] = c('Pempheris poeyi', 277066)
combined_dataframe[4544,72:73] = c('Paradiplogrammus bairdi', 315166)
combined_dataframe[2934,72:73] = c('Hoplias malabaricus', 874263)
combined_dataframe[339,72:73] = c('Clarias gariepinus', 888192)
combined_dataframe[729,72:73] = c('Clarias gariepinus', 888192)
combined_dataframe[1117,72:73] = c('Clarias gariepinus', 888192)
combined_dataframe[2139,72:73] = c('Clarias gariepinus', 888192)
combined_dataframe[2185,72:73] = c('Microglanis pataxo', 1008906)
combined_dataframe[5048,72:73] = c('Cichla kelberi', 1008929)
combined_dataframe[1404,72:73] = c('Odontesthes mirinensis', 1010706)
combined_dataframe[1637,72:73] = c('Odontesthes humensis', 1014093)
combined_dataframe[1815,72:73] = c('Salminus brasiliensis', 1016624)
combined_dataframe[2262,72:73] = c('Crenicichla lacustris', 1017287)
combined_dataframe[3397,72:73] = c('Crenicichla lacustris', 1017287)
combined_dataframe[2490,72:73] = c('Pygocentrus nattereri', 1018170)
combined_dataframe[2720,72:73] = c('Pygocentrus nattereri', 1018170)
combined_dataframe[3616,72:73] = c('Pygocentrus nattereri', 1018170)
combined_dataframe[4969,72:73] = c('Pygocentrus nattereri', 1018170)
combined_dataframe[4903,72:73] = c('Anchoviella vaillanti', 1018247)
combined_dataframe[1180,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[1447,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[1657,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[1676,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[1754,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[2443,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[2607,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[3423,72:73] = c('Pachyurus adspersus', 1020053)
combined_dataframe[434,72:73] = c('Pseudauchenipterus affinis', 1020246)
combined_dataframe[1271,72:73] = c('Pseudauchenipterus affinis', 1020246)
combined_dataframe[1645,72:73] = c('Pseudauchenipterus affinis', 1020246)
combined_dataframe[1972,72:73] = c('Pseudauchenipterus affinis', 1020246)
combined_dataframe[3231,72:73] = c('Pseudauchenipterus affinis', 1020246)
combined_dataframe[3379,72:73] = c('Pseudauchenipterus affinis', 1020246)
combined_dataframe[850,72:73] = c('Prochilodus costatus', 1020354)
combined_dataframe[2659,72:73] = c('Pimelodus maculatus', 1021320)
combined_dataframe[3800,72:73] = c('Pimelodus maculatus', 1021320)
combined_dataframe[5410,72:73] = c('Pimelodus maculatus', 1021320)
combined_dataframe[324,72:73] = c('Cathorops arenatus', 1022317)
combined_dataframe[1529,72:73] = c('Cathorops arenatus', 1022317)
combined_dataframe[2133,72:73] = c('Cathorops arenatus', 1022317)
combined_dataframe[2267,72:73] = c('Cathorops arenatus', 1022317)
combined_dataframe[2764,72:73] = c('Cathorops arenatus', 1022317)
combined_dataframe[3339,72:73] = c('Cathorops arenatus', 1022317)
combined_dataframe[4852,72:73] = c('Cathorops arenatus', 1022317)
combined_dataframe[2051,72:73] = c('Prochilodus argenteus', 1022670)
combined_dataframe[397,72:73] = c('Astyanax bimaculatus', 1023047)
combined_dataframe[557,72:73] = c('Astyanax bimaculatus', 1023047)
combined_dataframe[815,72:73] = c('Astyanax bimaculatus', 1023047)
combined_dataframe[3589,72:73] = c('Astyanax bimaculatus', 1023047)
combined_dataframe[3862,72:73] = c('Astyanax bimaculatus', 1023047)
combined_dataframe[2187,72:73] = c('Callichthys callichthys', 1023061)
combined_dataframe[4740,72:73] = c('Cichlasoma dimerus', 1026270)
combined_dataframe[81,72:73] = c('Jenynsia multidentata', 1026699)
combined_dataframe[5475,72:73] = c('Hoplias intermedius', 1043443)
combined_dataframe[2240,72:73] = c('Astyanax lacustris', 1259634)
combined_dataframe[3576,72:73] = c('Megaleporinus conirostris', 1422088)
combined_dataframe[4901,72:73] = c('Hypostomus scabriceps', 1467486)
combined_dataframe[2232,72:73] = c('Knodus moenkhausii', 1470238)
combined_dataframe[1459,72:73] = c('Deuterodon intermedius', 1526100)

combined_dataframe[combined_dataframe == '#VALUE!' | combined_dataframe == '#Value! #value!'] <- NA

Darwin Core mapping

Required Terms

OBIS currently has eight required DwC terms: scientificName, scientificNameID, occurrenceID, eventDate, decimalLongitude, decimalLatitude, occurrenceStatus, basisOfRecord.

scientificName/scientificNameID

Create a dataframe with unique taxa only (though this should already be unique). This will be our primary DarwinCore data frame.

#rename and restructure WoRMSIDs to OBIS requirements
occurrence <- combined_dataframe %>%
  rename(scientificName = CleanedData.scientificname) %>%
  rename(scientificNameID = WormsIDs) %>%
  mutate(scientificNameID = ifelse(!is.na(scientificNameID), paste("urn:lsid:marinespecies.org:taxname:", scientificNameID, sep = ""), NA))

occurrence <- subset(occurrence, select = -CanonicalFull)
new_names <- sub("^CleanedData\\.", "", names(occurrence))
names(occurrence) <- new_names

occurrenceID

OccurrenceID is an identifier for the occurrence record and should be persistent and globally unique. It is a combination of dataset-shortname:occurrence: and a hash based on the scientific name.

# Vectorize the digest function (The digest() function isn't vectorized. So if you pass in a vector, you get one value for the whole vector rather than a digest for each element of the vector):
vdigest <- Vectorize(digest)

# Generate occurrenceID:
occurrence %<>% mutate(occurrenceID = paste(short_name, "occurrence", vdigest (paste(catalognumber), algo="md5"), sep=":"))

Post-processing

Check data

Use the check_fields command from obistools to check if all OBIS required fields are present in an occurrence table and if any values are missing.

#Check fields
check_fields(occurrence)
## Warning: `data_frame()` was deprecated in tibble 1.1.0.
## ℹ Please use `tibble()` instead.
## ℹ The deprecated feature was likely used in the obistools package.
##   Please report the issue to the authors.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## # A tibble: 285 × 4
##    level field              row message                                      
##    <chr> <chr>            <int> <chr>                                        
##  1 error eventDate           NA Required field eventDate is missing          
##  2 error decimalLongitude    NA Required field decimalLongitude is missing   
##  3 error decimalLatitude     NA Required field decimalLatitude is missing    
##  4 error occurrenceStatus    NA Required field occurrenceStatus is missing   
##  5 error basisOfRecord       NA Required field basisOfRecord is missing      
##  6 error scientificName       4 Empty value for required field scientificName
##  7 error scientificName      64 Empty value for required field scientificName
##  8 error scientificName      77 Empty value for required field scientificName
##  9 error scientificName     164 Empty value for required field scientificName
## 10 error scientificName     176 Empty value for required field scientificName
## # ℹ 275 more rows

Create the EML file

This is a file which contains the dataset’s metadata and is required in a DarwinCore-Archive.

emld::eml_version("eml-2.1.1")
## [1] "eml-2.1.1"
#Title
title <- "CIUFES - Ichthyological Collection of the Federal University of Espírito Santo"

#AlternateIdentifier
alternateIdentifier <- paste("https://ipt.obis.org/secretariat/resource?r=", short_name, sep="")

#Abstract
abstract <- eml$abstract(
  para = "Collection of fish captured in research projects carried out by the UFES Ichthyology and Ichthyoplankton Laboratory, together with the fish collection from the UFES Zoology Collection. It serves as a reference collection and is intended for consultation by general researchers to confirm species identification. The relevance of the collection lies in the fact that most of the material comes from places that have not yet been studied or have little information and research."
)

People

Here we add the people involved in the project:

The creator is the person or organization responsible for creating the resource itself.

The contact is the person or institution to contact with questions about the use, interpretation of a data set.

The metadataProvider is the person responsible for providing the metadata documentation for the resource.

The associatedParty (in this case the Data Curator) is the person who mobilized the data from the original resource.

creator <- list(eml$creator(
    individualName = eml$individualName(
      givenName = "Luiz Fernando Loureiro", 
      surName = "Fernandes"),
    organizationName = "Federal University of Espírito Santo",
    electronicMailAddress = "oureiro@npd.ufes.br"
  ), eml$creator(
    individualName = eml$individualName(
      givenName = "Jean-Christophe", 
      surName = "Joyeux"),
    organizationName = "Federal University of Espírito Santo",
    electronicMailAddress = "ciufes@gmail.com"
  ), eml$creator(
    individualName = eml$individualName(
      givenName = "Kathiani Victor", 
      surName = "Bastos"),
    organizationName = "Federal University of Espírito Santo",
    electronicMailAddress = "ciufes@gmail.com"
  )
)


contact <- eml$creator(
  individualName = eml$individualName(
    givenName = "OBIS", 
    surName = "Secretariat"),
  electronicMailAddress = "helpdesk@obis.org",
  organizationName = "OBIS",
  positionName = "Secretariat"
)

metadataProvider <- eml$metadataProvider(
  individualName = eml$individualName(
    givenName = "Chandra", 
    surName = "Earl"),
  electronicMailAddress = "c.earl@unesco.org",
  organizationName = "UNESCO",
  positionName = "eDNA Scientific Officer"
)

associatedParty <- eml$associatedParty(
  role = "processor",
  individualName = eml$individualName(
    givenName = "Chandra", 
    surName = "Earl"),
  electronicMailAddress = "c.earl@unesco.org",
  organizationName = "UNESCO",
  positionName = "eDNA Scientific Officer"
)

Additional Metadata

Here we add the additionalMetadata element, which is required for a GBIF-type EML file and contains information such as the citation of the dataset, the citation of the original resource and the creation timestamp of the EML.

#{dataset.authors} ({dataset.pubDate}) {dataset.title}. [Version {dataset.version}]. {organization.title}. {dataset.type} Dataset {dataset.doi}, {dataset.url}

additionalMetadata <- eml$additionalMetadata(
  metadata = list(
    gbif = list(
      dateStamp = paste0(format(Sys.time(), "%Y-%m-%dT%H:%M:%OS3"), paste0(substr(format(Sys.time(), "%z"), 1, 3), ":", paste0(substr(format(Sys.time(), "%z"), 4, 5)))),
      hierarchyLevel = "dataset",
      citation = "IPT will autogenerate this",
      bibliography = list(
        citation = "CIUFES - Ichthyological Collection of the Federal University of Espírito Santo. Data downloaded: 2023-10-23")
    )
  )
)

citationdoi <- "https://specieslink.net/col/CIUFES/"

Coverage

Here we describe the dataset’s geographic, taxonomic and temporal coverage.

#Coverage
coverage <- eml$coverage(
  geographicCoverage = eml$geographicCoverage(
    geographicDescription = "Brazilian Atlantic Ocean",
    boundingCoordinates = eml$boundingCoordinates(
      westBoundingCoordinate = min(occurrence$latitude),
      eastBoundingCoordinate = max(occurrence$latitude),
      northBoundingCoordinate = max(occurrence$longitude),
      southBoundingCoordinate = min(occurrence$longitude))
    ),
  taxonomicCoverage = eml$taxonomicCoverage(
    generalTaxonomicCoverage = "Fishes",
    taxonomicClassification = list(
      eml$taxonomicClassification(
        taxonRankName = "Superclass",
        taxonRankValue = "Agnatha"),
      eml$taxonomicClassification(
        taxonRankName = "unranked",
        taxonRankValue = "Chondrichthyes"),
      eml$taxonomicClassification(
        taxonRankName = "unranked",
        taxonRankValue = "Osteichthyes")
      )
    
#  ),
#  temporalCoverage = eml$temporalCoverage(
#    rangeOfDates = eml$rangeOfDates(
#      beginDate = eml$beginDate(
#        calendarDate = "2019-05-01"
#      ),
#      endDate = eml$endDate(
#        calendarDate = "2016-05-06"
#      )
#    )
   )
)

Extra MetaData

These fields are not required, though they make the metadata more complete.

methods <- eml$methods(
  methodStep = eml$methodStep(
    description = eml$description(
      para = paste("See Github <a href=\"https://github.com/iobis/mwhs-data-mobilization\">Project</a> and <a href=\"https://iobis.github.io/mwhs-data-mobilization/notebooks/", site_dir_name, "/", dataset_dir_name, "\"> R Notebook</a> for dataset construction methods", sep="")
    )
  )
)

#Other Data
pubDate <- "2023-10-15"

#language of original document
language <- "por"

keywordSet <- eml$keywordSet(
  keyword = "Occurrence",
  keywordThesaurus = "GBIF Dataset Type Vocabulary: http://rs.gbif.org/vocabulary/gbif/dataset_type_2015-07-10.xml"
)

maintenance <- eml$maintenance(
  description = eml$description(
    para = ""),
  maintenanceUpdateFrequency = "notPlanned"
)

#Universal CC
intellectualRights <- eml$intellectualRights(
  para = "To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the <ulink url=\"http://creativecommons.org/publicdomain/zero/1.0/legalcode\"><citetitle>Public Domain (CC0 1.0)</citetitle></ulink>. Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction."
)


purpose <- eml$purpose(
  para = "These data were made accessible through UNESCO's eDNA Expeditions project to mobilize available marine species and occurrence datasets from World Heritage Sites."
)

additionalInfo <- eml$additionalInfo(
  para = "marine, harvested by iOBIS"
)

Create and Validate EML

#Put it all together
my_eml <- eml$eml(
           packageId = paste("https://ipt.obis.org/secretariat/resource?id=", short_name, "/v1.0", sep = ""),  
           system = "http://gbif.org",
           scope = "system",
           dataset = eml$dataset(
               alternateIdentifier = alternateIdentifier,
               title = title,
               creator = creator,
               metadataProvider = metadataProvider,
               associatedParty = associatedParty,
               pubDate = pubDate,
               coverage = coverage,
               language = language,
               abstract = abstract,
               keywordSet = keywordSet,
               contact = contact,
               methods = methods,
               intellectualRights = intellectualRights,
               purpose = purpose,
               maintenance = maintenance,
               additionalInfo = additionalInfo),
           additionalMetadata = additionalMetadata
)

eml_validate(my_eml)
## [1] TRUE
## attr(,"errors")
## character(0)

Create meta.xml file

Since these data are very different from the usual (there are many more fields) we will use the IPT auto mapping tool to create the meta.xml file.

Save outputs

dwc_output_dir <- paste(path_to_project_root, "output", site_dir_name, dataset_dir_name, sep="/")

write.csv(occurrence, paste(dwc_output_dir, "/occurrence.csv", sep = ""), na = "", row.names=FALSE)
write_eml(my_eml, paste(dwc_output_dir, "/eml.xml", sep = ""))

Edit EML

We have to further edit the eml file to conform to GBIF-specific requirements that cannot be included in the original EML construction. This includes changing the schemaLocation and rearranging the GBIF element, since the construction automatically arranges the children nodes to alphabetical order.

#edit the schemaLocation and rearrange gbif node for gbif specific eml file
eml_content <- read_xml(paste(dwc_output_dir, "/eml.xml", sep = ""))

#change schemaLocation attributes for GBIF
root_node <- xml_root(eml_content)
xml_set_attr(root_node, "xsi:schemaLocation", "https://eml.ecoinformatics.org/eml-2.1.1 http://rs.gbif.org/schema/eml-gbif-profile/1.2/eml.xsd")
xml_set_attr(root_node, "xmlns:dc", "http://purl.org/dc/terms/")
xml_set_attr(root_node, "xmlns:stmml", NULL)
xml_set_attr(root_node, "xml:lang", "eng")


#rearrange children nodes under the GBIF element
hierarchyLevel <- eml_content %>% xml_find_all(".//hierarchyLevel")
dateStamp <- eml_content %>% xml_find_all(".//dateStamp")
citation <- eml_content %>% xml_find_all("./additionalMetadata/metadata/gbif/citation")
bibcitation <- eml_content %>% xml_find_all("./additionalMetadata/metadata/gbif/bibliography/citation")
xml_set_attr(bibcitation, "identifier", citationdoi)

eml_content %>% xml_find_all(".//hierarchyLevel") %>% xml_remove()
eml_content %>% xml_find_all(".//dateStamp") %>% xml_remove()
eml_content %>% xml_find_all("./additionalMetadata/metadata/gbif/citation") %>% xml_remove()
eml_content %>% xml_find_all(".//gbif") %>% xml_add_child(citation, .where=0)
eml_content %>% xml_find_all(".//gbif") %>% xml_add_child(hierarchyLevel, .where=0)
eml_content %>% xml_find_all(".//gbif") %>% xml_add_child(dateStamp, .where=0)

write_xml(eml_content, paste(dwc_output_dir, "/eml.xml", sep = ""))

Zip files to DwC-A

Only zip occurrence since we don’t have a whole DwC archive.

output_zip <- paste(dwc_output_dir, "occurrence.zip", sep="/")

if (file.exists(output_zip)) {
  unlink(output_zip)
}

zip(zipfile = output_zip, files = "../../../output/brazilian_atlantic_islands_fernando_de_noronha_and_atol_das_rocas_reserves/CIUFES_2023/occurrence.csv", mode = "cherry-pick")

if (file.exists(output_zip)) {
  unlink("../../../output/brazilian_atlantic_islands_fernando_de_noronha_and_atol_das_rocas_reserves/CIUFES_2023/occurrence.csv")
}