Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,35 @@ The precision and recall of pre-synapse (t-bar) predictions based on validation
The precision and recall of predicted pre-to-post synaptic connections based on validation data collected in 81 neuropil compartments. This is the source data for the lower plot in Fig 1i of Berg _et al._ (2025).


## Hierarchical SBM communities

#### [`mcns_lvl_6_hsbm_communities.feather`](/supplemental_data/mcns_lvl_6_hsbm_communities.feather)
Details of the 305 communities (clusters) at the most granular level (level 6) from the greedy hierarchical stochastic block model fit of the male central brain, sorted by non-isomorphic type enrichment:
- `community_id`: order of appearance in the hierarchical visualisation and adjacency matrix (figure 9a, b).
- `types`: list of cell types.
- `type_n`: number of cell types in community.
- `type_iod`: dictionary of the number of cell types that are isomorphic (0), dimorphic (1) or male-specific (2).
- `bodyId`: list of neuron ids.
- `neuron_iod`: dictionary of the number of neurons that are isomorphic (0), dimorphic (1) or male-specific (2).
- `enriched`: enrichment status for dimorphic or male-speicfic cell types.

<details>
<summary>Example with code</summary>

```python
>>> import pandas as pd
>>> df = pd.read_feather("mcns_lvl_6_hsbm_communities.feather")
>>> df.head()
community_id types type_n type_iod bodyId neuron_iod enriched
0 158 [P1_2a/2b, P1_1b, mAL_m8, mAL_m11, SIP100m, mA... 52 {'0': None, '1': 1.0, '2': 51.0} [12681, 13029, 17387, 26993, 16262, 14050, 230... {'0': 0, '1': 2, '2': 257} True
1 8 [SIP143m, PVLP210m, P1_13b, P1_13c, P1_14a, AO... 48 {'0': None, '1': 1.0, '2': 47.0} [15059, 16671, 10820, 15362, 12796, 13872, 177... {'0': 0, '1': 11, '2': 166} True
2 237 [SIP146m, AVLP735m, AVLP731m, AVLP255, AVLP732... 49 {'0': 4.0, '1': 5.0, '2': 40.0} [22953, 29690, 107194, 28724, 515056, 519121, ... {'0': 17, '1': 25, '2': 159} True
3 142 [SMP193, P1_17a, pC1c, pC1x_d, P1_17b, SMP719m... 40 {'0': 4.0, '1': 7.0, '2': 29.0} [38228, 560878, 257510, 514983, 14698, 521225,... {'0': 13, '1': 20, '2': 142} True
4 177 [aIPg2, AOTU061, AOTU062, SMP493, SMP574, P1_8... 27 {'0': 4.0, '1': 10.0, '2': 13.0} [123762, 42283, 10878, 46817, 75299, 44511, 54... {'0': 17, '1': 73, '2': 50} True
```
</details>


## Citation

```bibtex
Expand Down
Binary file not shown.