Skip to content

Commit a0199fc

Browse files
authored
Merge pull request #1334 from dandi/bf-codespell
codespell: tuneup of config and some new typos detected fixes
2 parents e375663 + 58b61f7 commit a0199fc

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

dandi/tests/data/metadata/dandimeta_migration.new.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"schemaKey": "Dandiset",
44
"schemaVersion": "0.4.0",
55
"name": "A NWB-based dataset and processing pipeline of human single-neuron activity during a declarative memory task",
6-
"description": "A challenge for data sharing in systems neuroscience is the multitude of different data formats used. Neurodata Without Borders: Neurophysiology 2.0 (NWB:N) has emerged as a standardized data format for the storage of cellular-level data together with meta-data, stimulus information, and behavior. A key next step to facilitate NWB:N adoption is to provide easy to use processing pipelines to import/export data from/to NWB:N. Here, we present a NWB-formatted dataset of 1863 single neurons recorded from the medial temporal lobes of 59 human subjects undergoing intracranial monitoring while they performed a recognition memory task. We provide code to analyze and export/import stimuli, behavior, and electrophysiological recordings to/from NWB in both MATLAB and Python. The data files are NWB:N compliant, which affords interoperability between programming languages and operating systems. This combined data and code release is a case study for how to utilize NWB:N for human single-neuron recordings and enables easy re-use of this hard-to-obtain data for both teaching and research on the mechanisms of human memory.",
6+
"description": "A challenge for data sharing in systems neuroscience is the multitude of different data formats used. Neurodata Without Borders: Neurophysiology 2.0 (NWB:N) has emerged as a standardized data format for the storage of cellular-level data together with meta-data, stimulus information, and behavior. A key next step to facilitate NWB:N adoption is to provide easy to use processing pipelines to import/export data from/to NWB:N. Here, we present a NWB-formatted dataset of 1863 single neurons recorded from the medial temporal lobes of 59 human subjects undergoing intracranial monitoring while they performed a recognition memory task. We provide code to analyze and export/import stimuli, behavior, and electrophysiological recordings to/from NWB in both MATLAB and Python. The data files are NWB:N compliant, which affords interoperability between programming languages and operating systems. This combined data and code release is a case study for how to utilize NWB:N for human single-neuron recordings and enables easy reuse of this hard-to-obtain data for both teaching and research on the mechanisms of human memory.",
77
"contributor": [
88
{
99
"schemaKey": "Person",

docs/design/python-api-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Designs for an improved Python API
118118
* The basic methods simply upload/download everything, blocking until completion, and return either nothing or a summary of everything that was uploaded/downloaded
119119
* These methods have `show_progress=True` options for whether to display progress output using pyout or to remain silent
120120
* The upload methods return an `Asset` or collection of `Asset`s. This can be implemented by having the final value yielded by the `iter_` upload function contain an `"asset"` field.
121-
* Each method also has an iterator variant (named with an "`iter_`" preffix) that can be used to iterate over values containing progress information compatible with pyout
121+
* Each method also has an iterator variant (named with an "`iter_`" prefix) that can be used to iterate over values containing progress information compatible with pyout
122122
* These methods do not output anything (aside perhaps from logging)
123123

124124
* An `UploadProgressDict` is a `dict` containing some number of the following keys:

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ tag_prefix =
127127
parentdir_prefix =
128128

129129
[codespell]
130-
skip = dandi/_version.py,dandi/due.py,versioneer.py
130+
skip = _version.py,due.py,versioneer.py,*.vcr.yaml,venv,venvs
131131
# Don't warn about "[l]ist" in the abbrev_prompt() docstring:
132132
# TE is present in the BIDS schema
133-
ignore-regex = (\[\w\]\w+|TE)
133+
ignore-regex = (\[\w\]\w+|TE|ignore "bu" strings)
134134
exclude-file = .codespellignore
135135

136136
[mypy]

tools/update-assets-on-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Composed by Satra (with only little changes by yoh).
55
Initially based on code in dandisets' backups2datalad.py code for updating
6-
as a part of that script but it was intefering with the updates to datalad thus
6+
as a part of that script but it was interfering with the updates to datalad thus
77
extracted into a separate script.
88
"""
99

0 commit comments

Comments
 (0)