We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
intracellular_recordings, ic_sweeps, ic_sweep_sequences, ic_runs tables allow insertions of rows with the same id. I think id should be unique.
intracellular_recordings, ic_sweeps, ic_sweep_sequences, ic_runs
id
MWE:
nwbfile.add_ic_sweep(recordings=[0], id=12) nwbfile.add_ic_sweep(recordings=[0], id=12) nwbfile.ic_sweeps.to_dataframe()
The text was updated successfully, but these errors were encountered:
I think id should be unique.
Agreed.
Sorry, something went wrong.
Fix #8 Enforce that ids are unique in all ICEPhys tables
cb6feb4
@lvsltz #10 should fix this. This requires the latest version of HDMF as this depends on hdmf-dev/hdmf#186
Successfully merging a pull request may close this issue.
intracellular_recordings, ic_sweeps, ic_sweep_sequences, ic_runs
tables allow insertions of rows with the sameid
.I think
id
should be unique.MWE:
The text was updated successfully, but these errors were encountered: