2) Feature Request
A couple of issues recently have asked about linking data. We have a tutorial on modular storage right now, we should extend it or add a new tutorial to describe some of the common questions we have seen on this.
E.g., #882 on linking timestaps:
with NWBHDF5IO('f2.nwb', mode='w') as io:
ts1 = TimeSeries(name='1', data=np.ones(1000), timestamps=np.ones(1000), unit='s')
ts2 = TimeSeries(name='2', data=np.ones(1000), timestamps=ts1, unit='s')
f2 = nwbfile_factory()
f2.add_acquisition(ts1)
f2.add_acquisition(ts2)
io.write(f2)
Or default behavior for copy vs. linking data #668 (comment)
with NWBHDF5IO('file2.nwb', mode='w', manager=manager) as io:
io.write(nwb, link_data=False)
Problem/Use Case
Clarify documentation to describe questions that have been raised in issues.
Checklist
2) Feature Request
A couple of issues recently have asked about linking data. We have a tutorial on modular storage right now, we should extend it or add a new tutorial to describe some of the common questions we have seen on this.
E.g., #882 on linking timestaps:
Or default behavior for copy vs. linking data #668 (comment)
Problem/Use Case
Clarify documentation to describe questions that have been raised in issues.
Checklist