Files
organism/neuron/neuron-developer.md
T

199 lines
6.0 KiB
Markdown
Raw Normal View History

2026-05-05 12:20:32 +02:00
# neuron-developer.md
2026-03-07 12:26:39 +01:00
Neuron Development - LTP-LTD Behavior:
2026-03-11 11:40:51 +01:00
This is critical for long-term presynaptic changes. The postsynaptic cell, upon detecting specific activity patterns (like those for LTP/LTD), releases chemical signals that travel backwards to the presynaptic terminal, instructing it to change.
2026-03-07 12:26:39 +01:00
2026-03-08 10:01:18 +01:00
- For Presynaptic Strengthening (e.g., un LTP):
2026-03-07 12:26:39 +01:00
- Nitric Oxide (NO): A gas that diffuses freely. During postsynaptic LTP induction (strong NMDAR activation), neuronal NO synthase (nNOS) is activated. NO diffuses into the presynaptic terminal and activates soluble guanylyl cyclase (sGC), raising cGMP levels. This enhances vesicle release via PKG, contributing to presynaptic LTP.
- Endocannabinoid-Mediated LTP (eLTP): In some synapses, a postsynaptic depolarization triggers production of endocannabinoids (e.g., 2-AG). These bind to presynaptic CB1 receptors, but surprisingly, can initiate a signaling cascade (involving cAMP/PKA) that increases Pr for a long period.
- Neurotrophins (BDNF): Released from the postsynapse in an activity-dependent manner. Presynaptic TrkB receptors activate pathways (PI3K, MAPK) that enhance vesicle docking and Pr.
2026-03-08 10:01:18 +01:00
- For Presynaptic Weakening (e.g., LTD):
2026-03-07 12:26:39 +01:00
- Classical Endocannabinoid-Mediated LTD (eCB-LTD): More common. Moderate postsynaptic activity (mGluR activation or moderate Ca²⁺ rise) triggers 2-AG release. 2-AG binds presynaptic CB1 receptors, which inhibit VGCCs and directly inhibit the release machinery via Gi/o protein signaling, reducing Pr for a long time.
- Other Lipid Mediators (like LPA) can also act as retrograde signals for depression.
Augmentation:
- Calcium-sensing proteins (Munc13) alter release probability (1-10s range). How?
Upregulation:
- NO/BDNF activates cascades that increase P_r, promote synaptic growth (facilitates LTP). How?
- VGCC TUN
- Potassium channel modulation ??
Downregulation:
- eCBs bind CB1 receptors, inhibit VGCCs, activate K⁺ channels → profound decrease in P_r (DSE/DSI - depolarization-induced suppression)
- CB1 receptor activation (by eCBs)
- Retrograde BDNF (brain-derived neurotrophic factor)
> Night Time Scale
```Gen
2026-05-05 15:14:59 +02:00
developer: NEURON-DEVELOPER
contained_by: NEURON
2026-03-07 12:26:39 +01:00
```
2026-05-05 15:14:59 +02:00
## CA2-PRESYNAPSE-DEVELOPER: Developer
2026-03-07 12:26:39 +01:00
```Gen
2026-05-05 15:14:59 +02:00
CA2-PRESYNAPSE-DEVELOPER
2026-03-07 12:26:39 +01:00
2026-05-05 15:14:59 +02:00
type: developer
2026-03-07 12:26:39 +01:00
2026-05-05 15:14:59 +02:00
contained_by: NEURON-DEVELOPER
2026-03-07 12:26:39 +01:00
2026-05-05 15:14:59 +02:00
develops: NEURON/NEURON-DAY/AXON/PRESYNAPSE/tub/Ca2+ # this is the tub whose "full" must be modulated
2026-03-08 10:01:18 +01:00
2026-05-05 15:14:59 +02:00
tub_dev:
- fullMod ( fullness: 100x, active: Ca2+/full, emptiness: 50x )
# qui stiamo modulando il full di Ca2+, associandolo ad
# active di fullMod. Cambiando active di fullMod,
# si cambia la full di Ca2+
2026-03-07 12:26:39 +01:00
2026-05-05 15:14:59 +02:00
tub_local:
2026-03-07 12:26:39 +01:00
2026-05-05 15:14:59 +02:00
tub_intricated:
- Nox ( contained_by: EURON/NEURON-DAY/AXON/PRESYNAPSE )
- Ecb ( contained_by: EURON/NEURON-DAY/AXON/PRESYNAPSE )
2026-03-07 12:26:39 +01:00
```
2026-05-05 15:14:59 +02:00
### :Contextor
2026-03-07 12:26:39 +01:00
***Tens Milliseconds Time Scale***
```Gen
2026-05-05 15:14:59 +02:00
CheckPreTubCa2+: ( active: 60x )
2026-03-07 12:26:39 +01:00
2026-05-05 15:14:59 +02:00
type: contextor
contained_by: NEURON-DEVELOPER
2026-03-07 12:26:39 +01:00
in_context: Fixed
condition: ( empty )
2026-05-05 15:14:59 +02:00
out_context: DecreaseFull_ctx
2026-03-07 12:26:39 +01:00
condition: NOT ( empty ) AND NOT ( Ca2+ full )
2026-05-05 15:14:59 +02:00
out_context: Nothing_ctx
2026-03-07 12:26:39 +01:00
condition: ( full)
2026-05-05 15:14:59 +02:00
out_context: IncreaseFull_ctx
2026-03-07 12:26:39 +01:00
```
2026-05-05 15:14:59 +02:00
### :Accumulator
2026-03-07 12:26:39 +01:00
```Gen
2026-05-05 15:14:59 +02:00
DecreaseFull: ( active: 1x )
type: accumulator
2026-03-07 12:26:39 +01:00
contained_by: DEV-PRE-FULL-CA2+
2026-05-05 15:14:59 +02:00
in_context: DecreaseFull_ctx
2026-03-07 12:26:39 +01:00
hypothesis: NOT ( full ) AND NOT ( empty )
2026-05-05 15:14:59 +02:00
action: [ increase, decrease]
trace: None
2026-03-07 12:26:39 +01:00
```
2026-04-14 15:55:58 +02:00
### DEV-PRE-RRP-TUB: Developer
2026-03-07 12:26:39 +01:00
```Gen
2026-04-14 15:55:58 +02:00
developer: DEV-PRE-RRP-TUB
2026-03-10 14:50:34 +01:00
contained_by: DEV-TUB-FLOOR
2026-03-07 12:26:39 +01:00
2026-04-14 15:55:58 +02:00
develops: BEH-PRE/tub/Rrp # this is the tub whose "full" must be modulated
2026-03-08 10:01:18 +01:00
tub_dev:
- fullMod ( fullness: 100x, active: Rrp/fullness, emptiness: 50x ) # RrpFull "contains" a number of blocks equal to the current Full.
2026-03-07 12:26:39 +01:00
# qui stiamo modulando la fullness di Rrp, associandola ad
# active di fullMod. Cambiando active di fullMod,
# si cambia la fullness di Rrp
2026-03-08 10:01:18 +01:00
tub_local:
2026-03-07 12:26:39 +01:00
2026-03-08 10:01:18 +01:00
tub_intricated:
- Nox ( contained_by: BEH-POST )
- Ecb ( contained_by: BEH-POST )
2026-03-07 12:26:39 +01:00
```
2026-04-14 19:08:46 +02:00
#### Context1
2026-03-07 12:26:39 +01:00
2026-04-14 19:08:46 +02:00
#### Episode1
2026-03-10 14:50:34 +01:00
2026-04-14 15:55:58 +02:00
## DEV-TUB-CONCEPTUAL: Developer
2026-03-10 14:50:34 +01:00
Qui la PRE e la POST si predispongono per dare le condizioni a SYN di stabilire o eliminare una sinapsi. Per ora questo comportamento lo mettiamo in TUN perche non si tratta di creare o distruggere PRE o POST, ma di rendere disponibile a SYN la possibilita di creare o distruggere una SYN. Durante il Day ce il TUN che mette a disposizione, durante il Night SYN crea o distrugge gli accoppiamenti PRE POST.
ATTENZIONE: Questo e POST e da cambiare, perche ce il passaggio da TubPoss a TubPossSyn a TubAct. E la SYN che passa in TubAct.
> Minutes/hours Time Scale
```Gen
2026-04-14 15:55:58 +02:00
developer: DEV-TUB-CONCEPTUAL
contained_by: NIGHT-N
2026-03-10 14:50:34 +01:00
```
2026-04-14 15:55:58 +02:00
### AXO-PRE-TUB-DEV: Developer
2026-03-10 14:50:34 +01:00
2026-03-11 11:40:51 +01:00
Qui stiamo ragionanando sulla trasformazione fra bottone presinaptico inattivo e bottone attivo, pronto a diventare parte di una sinapsi. Il ragionamento e' locale, e mette a disposizione o toglie un bottone attivo che un altro ragionamento, in TUN-WTA, fara' su questo bottone, il bottone postisinaptico e una sinapsi disponibile. Agiamo sulla fullness di BEH-PRE.
2026-03-10 14:50:34 +01:00
```Gen
2026-04-14 15:55:58 +02:00
developer: AXO-PRE-TUB-DEV
2026-03-10 14:50:34 +01:00
contained_by: DEV-TUB-CONCEPTUAL
2026-04-14 15:55:58 +02:00
develops: N/AXO/BEH-AXO/expansion/BEH-PRE
2026-03-11 11:40:51 +01:00
# qui stiamo modulando fullness del tub BEH-PRE associandoli a tub_modulation prePos e PreAct.
2026-03-10 14:50:34 +01:00
2026-03-11 11:40:51 +01:00
tub_modulation:
- fulMod ( fullness: 100x, active: BEH-PRE/fullness, empty: 0x ) # aumento di possible di BEH-PRE
2026-03-10 14:50:34 +01:00
- actMod ( fullness: None, active: BEH-PRE/active, empty: BEH-PRE/emptiness ) # riferimento a active di BEH-PRE
context_intricated:
- TunPossible ( contained_by: TUN-N )
tub_local:
tub_intricated:
```
2026-04-14 19:08:46 +02:00
#### Context2
2026-03-10 14:50:34 +01:00
```Gen
context: CheckTunSynAxoPrePossibility
contained_by: TUN-SYN-AXO-PRE
in_context: TunPossible
rf: ( active: 60x )
condition:
out_context:
```
2026-04-14 19:08:46 +02:00
#### Episode2
2026-03-10 14:50:34 +01:00
```Gen
episode: TunSynAxoPre
contained_by: TUN-SYN-AXO-PRE
in_context: ??
rf: 1x
hypothesis: NOT () AND NOT ()
action: [ increase, decrease]
trace: None
```
2026-04-14 15:55:58 +02:00
### DEV-BD-BEH-POST-TUB: Developer
2026-03-10 14:50:34 +01:00
```Gen
2026-04-14 15:55:58 +02:00
developer: DEV-BD-BEH-POST-TUB
2026-03-10 14:50:34 +01:00
contained_by: DEV-TUB-CONCEPTUAL
...
```
2026-04-14 19:08:46 +02:00
#### Context3
2026-03-10 14:50:34 +01:00
2026-04-14 19:08:46 +02:00
#### Episode3