We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd976b5 commit 5c32a78Copy full SHA for 5c32a78
src/schema/associations.ts
@@ -86,10 +86,10 @@ const associationLookup = {
86
sampling_frequency: columns.get('sampling_frequency'),
87
}
88
},
89
- coordsystem: async (file: BIDSFile, options: { maxRows: number }): Promise<Channels> => {
+ coordsystem: async (file: BIDSFile, options: { maxRows: number }): Promise<{path: string, keys: string[]}> => {
90
const keys = Object.keys(await loadJSON(file, options.maxRows)
91
.catch((e) => {
92
- return new Map()
+ return []
93
}))
94
return {
95
path: file.path,
0 commit comments