You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,8 @@
1
+
# v0.6.6 (Upcoming)
2
+
3
+
### Improvements
4
+
* Added documentation to API and CLI docs on how to use the dandi config option. [#624](https://github.com/NeurodataWithoutBorders/nwbinspector/pull/624)
Copy file name to clipboardExpand all lines: docs/user_guide/using_the_command_line_interface.rst
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,27 @@ the most useful of these options.
22
22
23
23
24
24
25
+
Using the DANDI Configuration
26
+
------------------------------
27
+
28
+
The NWBInspector includes a built-in DANDI `configuration file <https://github.com/NeurodataWithoutBorders/nwbinspector/blob/dev/src/nwbinspector/_internal_configs/dandi.inspector_config.yaml>`_
29
+
that adjusts the importance levels of certain checks to match
30
+
:dandi-archive:`DANDI Archive <>` requirements. This is useful when preparing files for upload to DANDI, as it
31
+
ensures that critical checks required for DANDI validation are properly prioritized.
32
+
33
+
To use the DANDI configuration from the command line, use the ``--config`` flag with the keyword ``dandi``:
34
+
35
+
::
36
+
37
+
nwbinspector path/to/my/data.nwb --config dandi
38
+
39
+
40
+
The DANDI configuration elevates certain checks (e.g. ``check_subject_exists``, ``check_subject_species_exists``, etc.)
41
+
to ``CRITICAL`` importance, meaning they must pass for DANDI validation to succeed. A full list of the additional DANDI requirements
42
+
can be found in the `DANDI documentation <https://docs.dandiarchive.org/user-guide-sharing/validating-files/#missing-dandi-metadata>`_.
0 commit comments