patch the scienctific_name tag name to "scientific_name"

This commit is contained in:
Eric Coissac
2025-03-05 14:22:12 +01:00
parent 996ec69bd9
commit 286e27d6ba
3 changed files with 3 additions and 2 deletions

View File

@ -205,7 +205,7 @@ func (sequence *BioSequence) SetScientificName(taxonomy *obitax.Taxonomy) string
taxon := sequence.Taxon(taxonomy)
name := taxon.ScientificName()
sequence.SetAttribute("scienctific_name", name)
sequence.SetAttribute("scientific_name", name)
return name
}