-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @leond32, Thanks for trying out spyglass. When deleting the NWB file, what code are you using? For example, the following is the recommended way of deleting an NWB file from the database. Notice the second line is needed to delete the actual underlying NWB file. import spyglass.common as sgc
(sgc.Nwbfile & {"nwb_file_name": nwb_copy_file_name}).delete()
sgc.Nwbfile().cleanup(delete_files=True) @CBroz1 do you have any other thoughts on what could be causing this issue? |
Beta Was this translation helpful? Give feedback.
-
Hi @leond32 - We took a closer look at our As a direct solve for your case, you can fetch the data that did get inserted, update the values, and then re-insert with the |
Beta Was this translation helpful? Give feedback.
Hi @leond32 - We took a closer look at our
Electrode
make function. I think you're getting the default reference-1
because your data isn't our assumedndx_franklab_novela.Probe
type checked here. We're still figuring out how to address this internally, but safe to say Spyglass should warn you if your data isn't being ingested as expected. In order for us to ingest your data, we would need a mapping of these variablesAs a direct solve for your case, you can fetch the data that did get inserted, update the values, and then re-insert with the
allow_direct_insert
flag (datajoint insert doc).