Skip to content

Commit

Permalink
Merge pull request #1922 from magland/nwb-lindi-json
Browse files Browse the repository at this point in the history
neurosift external service for .nwb.lindi.json
  • Loading branch information
yarikoptic authored May 6, 2024
2 parents 22bcb07 + f4d0f5a commit 421c180
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion web/src/views/FileBrowserView/FileBrowser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,15 @@ const EXTERNAL_SERVICES = [
name: 'Neurosift',
regex: /\.nwb$/,
maxsize: Infinity,
endpoint: 'https://flatironinstitute.github.io/neurosift?p=/nwb&url=$asset_dandi_url$&dandisetId=$dandiset_id$&dandisetVersion=$dandiset_version$', // eslint-disable-line max-len
endpoint: 'https://neurosift.app?p=/nwb&url=$asset_dandi_url$&dandisetId=$dandiset_id$&dandisetVersion=$dandiset_version$', // eslint-disable-line max-len
},
{
name: 'Neurosift',
regex: /\.nwb.lindi.json$/,
maxsize: Infinity,
endpoint: 'https://neurosift.app?p=/nwb&url=$asset_dandi_url$&st=lindi&dandisetId=$dandiset_id$&dandisetVersion=$dandiset_version$', // eslint-disable-line max-len
}
];
type Service = typeof EXTERNAL_SERVICES[0];
Expand Down

0 comments on commit 421c180

Please sign in to comment.