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 b9b84f1 commit 1297722Copy full SHA for 1297722
src/pages/DandiPage/fetchNeurodataTypesIndex.ts
@@ -14,6 +14,8 @@ let cachedNeurodataTypesIndex: NeurodataTypesIndex | undefined = undefined;
14
export const fetchNeurodataTypesIndex = async () => {
15
if (cachedNeurodataTypesIndex) return cachedNeurodataTypesIndex;
16
try {
17
+ // This is created by the workflow in https://github.com/magland/neurosift-kerchunker
18
+ // See https://github.com/magland/neurosift-kerchunker/blob/main/workflow_scripts/create_neurodata_types_index.py
19
const url =
20
"https://lindi.neurosift.org/dandi/neurodata_types_index.json.gz";
21
const response = await fetch(url + "?cb=" + Date.now());
0 commit comments