Skip to content

Commit

Permalink
spike density plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Feb 19, 2025
1 parent a19cf22 commit 44019cc
Show file tree
Hide file tree
Showing 7 changed files with 680 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: neurosift_job_manager
context: neurosift_job_runner
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changes

## February 19, 2025
- Add SpikeDensity plugin view for NWB files
- Added job resubmission capability for failed jobs

## February 18, 2025
Expand Down
5 changes: 5 additions & 0 deletions src/pages/NwbPage/hdf5Interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ const getRemoteH5FileForUrl = async (url: string) => {
resolvedUrl: urlResolved,
remoteH5File: await RemoteH5FileLindi.create(urlResolved),
};
} else if (urlResolved.endsWith(".lindi.tar")) {
hdf5Files[url] = {
resolvedUrl: urlResolved,
remoteH5File: await RemoteH5FileLindi.create(urlResolved),
};
} else {
hdf5Files[url] = {
resolvedUrl: urlResolved,
Expand Down
Loading

0 comments on commit 44019cc

Please sign in to comment.