Skip to content

Commit

Permalink
improve species message
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Mar 10, 2024
1 parent 2b0b73a commit 5717bbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nwbinspector/checks/nwbfile_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ def check_subject_species_form(subject: Subject):
if subject.species and not re.fullmatch(species_form_regex, subject.species):
return InspectorMessage(
message=(
f"Subject species '{subject.species}' should be in latin binomial form, e.g. 'Mus musculus' and "
"'Homo sapiens'"
f"Subject species '{subject.species}' should either be in Latin binomial form (e.g., 'Mus musculus' and "
"'Homo sapiens') or be a NCBI taxonomy link (e.g., 'http://purl.obolibrary.org/obo/NCBITaxon_280675')."
),
)

Expand Down

0 comments on commit 5717bbb

Please sign in to comment.