Skip to content

Commit

Permalink
Merge branch 'feature/fix-nwb-reacquisition' into release/v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tienday committed Apr 15, 2024
2 parents d09de39 + f7205b6 commit 28e72e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions studio/app/optinist/core/nwb/lab_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
SPECIMEN_TYPES = {
"Specimen type": "text",
# NOTE: json data's key is "Brain region Marmoset" or "Brain region Mouse"
"Brain region": ("text", (None, None)),
"Brain region": ("text", [(None,), (None, None)]),
}

specimen_type_ext = NWBGroupSpec(
Expand Down Expand Up @@ -71,9 +71,9 @@
"Technique": "text",
"Virus type": "text",
"serotypes": "text",
"Virus": ("text", (None, None)),
"Virus": ("text", [(None,), (None, None)]),
# NOTE: json data's key is "Injection region Marmoset" or "Injection region Mouse"
"Injection region": ("text", (None, None)),
"Injection region": ("text", [(None,), (None, None)]),
"Injection age": "text",
"Incubation period": "text",
}
Expand Down

0 comments on commit 28e72e9

Please sign in to comment.