Skip to content
New issue

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

Broken references for nested Source #498

Closed
refactoriel opened this issue May 19, 2021 · 2 comments
Closed

Broken references for nested Source #498

refactoriel opened this issue May 19, 2021 · 2 comments
Labels

Comments

@refactoriel
Copy link

refactoriel commented May 19, 2021

I want to represent data coming from different channels from one probe using nested Sources.
For example, if I had two probes with 32 channels each, I would have two Sources at the block level. Each of the Sources would have unique channel numbers. Concretely, I want to

  1. Get the probe identity (block-level Source) from referring objects like DataArray.
  2. Get all referring objects from a probe, e.g. all channels belonging to "region0"

Somehow, this doesn't work:

f =  nixio.File.open("test.nix", "w")
b = f.create_block("block0", "session")
s0 = b.create_source("region0", "region")
s00 = s0.create_source("chan0", "chan")
s01 = s0.create_source("chan1", "chan")
da0 = b.create_data_array("da0", "foodata", data=np.zeros(10))
da0.sources.append(s00)
da1 = b.create_data_array("da1", "foodata", data=np.zeros(10))
da1.sources.append(s01)

# trying to find data arrays from "chan0"
print(s00.referring_objects)
# This works
s_from_da = da0.sources[0]
print(s_from_da.referring_objects)
# parent should be "region0", but it's the block
print(s_from_da._parent)
# "s_from_da" is not its parent...
print(s_from_da == s00)
# get all data_arrays from "region0"
print(s0.referring_objects)

Did I misunderstand the concept of Source?

Edit:
I guess that is related to the note at

# TODO: Sources returned from this container have an incorrect _parent

Doesn't sound like a solution is around the corner...
So quickfix would be to have all those channel Sources at the top level and put them in a Group according to the probe?

Edit 2:
Hmm, apparently Group is not considered a referring_object...
Resorting to defining the probe/region in the Source's definition. Oh dear 😅

@jgrewe jgrewe added the bug label May 19, 2021
@jgrewe
Copy link
Member

jgrewe commented May 19, 2021

@DanBenHa sorry for the inconvenience. We will have a closer look at it. Your understanding of the source is correct and I think this can be considered a bug.
When searching for the referring objects we do not check whether the parent is a Block, or a parent Source. In your case of nested sources we need to traverse to the root of the tree.

@jgrewe
Copy link
Member

jgrewe commented Jun 14, 2021

fixed with #499 closing this issue

@jgrewe jgrewe closed this as completed Jun 14, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants