-
Notifications
You must be signed in to change notification settings - Fork 9
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
Specification of Sets #34
Comments
For V1, the NineML standards meeting in Antwerp agreed to adopt the syntax from the "technical paper" for version 1 (i.e. , etc., no sub-sets). Handling more complex scenarios is postponed to version 2. |
NineML standards meeting: We have agreed on the following format for union of populations <Set name="AllNeurons">
<Concatenate>
<Item index="0">Golgis</Item>
<Item index="1">Granules</Item>
</Concatenate>
</Set> Subsets are deferred to version 2, see #38 |
Set doesn't seem to be the right name for this considering we are trying to conserve cell indices... |
In the google hangout last Friday we decided to reassign the name |
|
Yeah, in the case where we are just allowing concatenation of populations |
How about |
|
This is now implemented in the python library with PR #54 (assuming Andrew is okay with it). |
It's fine with me. Another idea for the name: how about simply |
Yeah, I like |
It is not clear to me what happens if several items in a concatenate declaration refer to the same population, e.g.: <Selection name="AllNeurons">
<Concatenate>
<Item index="0">Excitatory</Item>
<Item index="1">Excitatory</Item>
<Item index="2">Inhibitory</Item>
</Concatenate>
</Selection> Are repeated elements in the set preserved, and is it that two copies of the Excitatory population are to be created in this example? If so, perhaps it is more appropriate to call this object a "population map" or "population dictionary" since it also serves to assign indices to populations. |
It would seem sensible that there are simply several references to the same On 10 November 2014 21:36, Ivan Raikov [email protected] wrote:
Alex Cope |
That's fine, as long as it is clearly defined somewhere. I agree that 'Selection' is a better name in this case, On Mon, Nov 10, 2014 at 6:43 PM, Alex Cope [email protected] wrote:
|
Sets are intended to group populations and, possibly, define and group sub-populations. They were not fully specified by the task force.
The text was updated successfully, but these errors were encountered: