glmp / c_elegans_batch01_development_behavior.html
garywelz's picture
Upload 17 files
35afe56 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C. elegans Batch 01: Development & Behavior - Programming Framework Analysis</title>
<script src="https://cdn.jsdelivr.net/npm/mermaid@10.6.1/dist/mermaid.min.js"></script>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 'Arial Unicode MS', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1400px;
margin: 0 auto;
background: white;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
border-radius: 10px;
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 2rem;
text-align: center;
}
.header h1 {
margin: 0;
font-size: 2.5rem;
font-weight: 300;
}
.content {
padding: 2rem;
}
.intro {
background: #f8f9fa;
padding: 2rem;
border-radius: 8px;
margin-bottom: 2rem;
}
.toc {
background: #f8f9fa;
padding: 2rem;
border-radius: 8px;
margin-bottom: 2rem;
}
.toc ul {
list-style: none;
padding: 0;
}
.toc li {
margin: 0.5rem 0;
}
.toc a {
color: #007bff;
text-decoration: none;
font-weight: 500;
}
.process-item {
margin: 2rem 0;
padding: 1.5rem;
border: 1px solid #dee2e6;
border-radius: 8px;
background: #fafafa;
}
.process-item h3 {
color: #495057;
margin-bottom: 1rem;
}
.mermaid-container {
background: white;
padding: 1rem;
border-radius: 8px;
margin: 1rem 0;
overflow-x: auto;
}
.footer {
background: #f8f9fa;
padding: 2rem;
text-align: center;
border-top: 1px solid #dee2e6;
margin-top: 2rem;
}
.color-legend {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 0.5rem 1rem;
margin: 1rem 0 0;
font-size: 10pt;
color: #333;
}
.color-box {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 2px;
margin-right: 4px;
border: 1px solid rgba(0,0,0,.15);
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>🧬 C. elegans Batch 01: Development & Behavior</h1>
<p>Programming Framework Analysis - 8 Eukaryotic Processes</p>
</div>
<div class="content">
<div class="intro">
<h2>🧬 Development & Behavior Systems</h2>
<p><strong>Batch Overview:</strong> This batch contains 8 fundamental C. elegans processes responsible for development and behavior. These processes represent the core computational systems that enable this model organism to develop from embryo to adult, exhibit complex behaviors, and respond to environmental cues.</p>
<p>Each process demonstrates sophisticated biological programming with developmental pathways, neural circuits, behavioral responses, and aging mechanisms.</p>
</div>
<div class="toc">
<h2>📋 Table of Contents - 8 Eukaryotic Processes</h2>
<ul>
<li><a href="#embryonic-development">1. Embryonic Development</a></li>
<li><a href="#cell-fate-determination">2. Cell Fate Determination</a></li>
<li><a href="#neural-development">3. Neural Development</a></li>
<li><a href="#behavioral-circuits">4. Behavioral Circuits</a></li>
<li><a href="#sensory-processing">5. Sensory Processing</a></li>
<li><a href="#learning-memory">6. Learning & Memory</a></li>
<li><a href="#aging-longevity">7. Aging & Longevity</a></li>
<li><a href="#stress-response">8. Stress Response</a></li>
</ul>
</div>
<!-- Process 1: Embryonic Development -->
<div class="process-item" id="embryonic-development">
<h3>1. Embryonic Development</h3>
<p>Detailed analysis of C. elegans Embryonic Development using the Programming Framework, revealing computational logic and regulatory patterns for early development.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Development Triggers
A[Fertilization] --> B[Zygote Formation]
C[Maternal Factors] --> D[Asymmetric Division]
E[Cell Division] --> F[Blastula Formation]
G[Gastrulation] --> H[Germ Layer Formation]
%% Zygote Development
B --> I[Polarity Establishment]
I --> J[Asymmetric Cleavage]
J --> K[Cell Fate Specification]
%% Maternal Control
D --> L[Maternal mRNAs]
L --> M[Translation Control]
M --> N[Protein Gradients]
%% Germ Layer Formation
F --> O[Ectoderm Formation]
O --> P[Mesoderm Formation]
P --> Q[Endoderm Formation]
%% Integration
K --> R[Development Program]
N --> R
Q --> R
H --> R
R --> S[Embryonic Pattern]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<!-- Process 2: Cell Fate Determination -->
<div class="process-item" id="cell-fate-determination">
<h3>2. Cell Fate Determination</h3>
<p>Detailed analysis of C. elegans Cell Fate Determination using the Programming Framework, revealing computational logic and regulatory patterns for cell differentiation.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Fate Components
A[Cell Lineage] --> B[Fate Specification]
C[Signaling Pathways] --> D[Cell-Cell Communication]
E[Transcription Factors] --> F[Gene Expression]
G[Epigenetic Control] --> H[Fate Maintenance]
%% Lineage Control
B --> I[Asymmetric Division]
I --> J[Fate Determinants]
J --> K[Cell Identity]
%% Signaling Networks
D --> L[Notch Signaling]
L --> M[Wnt Pathway]
M --> N[Cell Fate Decision]
%% Transcription Control
F --> O[Homeobox Genes]
O --> P[Cell Type Genes]
P --> Q[Differentiation]
%% Integration
K --> R[Fate Program]
N --> R
Q --> R
H --> R
R --> S[Cell Identity]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<!-- Process 3: Neural Development -->
<div class="process-item" id="neural-development">
<h3>3. Neural Development</h3>
<p>Detailed analysis of C. elegans Neural Development using the Programming Framework, revealing computational logic and regulatory patterns for nervous system formation.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Neural Components
A[Neural Precursors] --> B[Neurogenesis]
C[Axon Guidance] --> D[Synapse Formation]
E[Neural Circuits] --> F[Circuit Assembly]
G[Neurotransmitters] --> H[Neural Function]
%% Neurogenesis
B --> I[Neural Progenitors]
I --> J[Neuron Differentiation]
J --> K[Neural Identity]
%% Axon Guidance
D --> L[Guidance Molecules]
L --> M[Axon Pathfinding]
M --> N[Target Recognition]
%% Synapse Formation
F --> O[Synaptic Proteins]
O --> P[Synapse Assembly]
P --> Q[Functional Synapses]
%% Integration
K --> R[Neural Program]
N --> R
Q --> R
H --> R
R --> S[Neural Circuit]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<!-- Process 4: Behavioral Circuits -->
<div class="process-item" id="behavioral-circuits">
<h3>4. Behavioral Circuits</h3>
<p>Detailed analysis of C. elegans Behavioral Circuits using the Programming Framework, revealing computational logic and regulatory patterns for behavior generation.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Behavior Components
A[Sensory Input] --> B[Sensory Neurons]
C[Interneurons] --> D[Neural Processing]
E[Motor Neurons] --> F[Motor Output]
G[Behavioral State] --> H[Behavioral Control]
%% Sensory Processing
B --> I[Sensory Transduction]
I --> J[Signal Integration]
J --> K[Sensory Representation]
%% Neural Processing
D --> L[Interneuron Networks]
L --> M[Information Processing]
M --> N[Decision Making]
%% Motor Control
F --> O[Motor Pattern Generation]
O --> P[Muscle Activation]
P --> Q[Behavioral Response]
%% Integration
K --> R[Behavioral Program]
N --> R
Q --> R
H --> R
R --> S[Behavioral Output]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<!-- Process 5: Sensory Processing -->
<div class="process-item" id="sensory-processing">
<h3>5. Sensory Processing</h3>
<p>Detailed analysis of C. elegans Sensory Processing using the Programming Framework, revealing computational logic and regulatory patterns for environmental sensing.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Sensory Components
A[Environmental Cues] --> B[Sensory Receptors]
C[Signal Transduction] --> D[Neural Encoding]
E[Sensory Integration] --> F[Perception]
G[Behavioral Response] --> H[Sensory Adaptation]
%% Receptor Activation
B --> I[Chemoreceptors]
I --> J[Mechanoreceptors]
J --> K[Thermoreceptors]
%% Signal Transduction
D --> L[G-Protein Coupling]
L --> M[Second Messengers]
M --> N[Ion Channel Activation]
%% Neural Encoding
F --> O[Action Potentials]
O --> P[Neural Codes]
P --> Q[Sensory Representation]
%% Integration
K --> R[Sensory Program]
N --> R
Q --> R
H --> R
R --> S[Environmental Response]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<!-- Process 6: Learning & Memory -->
<div class="process-item" id="learning-memory">
<h3>6. Learning & Memory</h3>
<p>Detailed analysis of C. elegans Learning & Memory using the Programming Framework, revealing computational logic and regulatory patterns for behavioral plasticity.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Learning Components
A[Experience] --> B[Neural Plasticity]
C[Synaptic Changes] --> D[Memory Formation]
E[Memory Storage] --> F[Memory Retrieval]
G[Behavioral Change] --> H[Learning Outcome]
%% Neural Plasticity
B --> I[Synaptic Strengthening]
I --> J[Synaptic Weakening]
J --> K[Circuit Modification]
%% Memory Formation
D --> L[Short-term Memory]
L --> M[Long-term Memory]
M --> N[Memory Consolidation]
%% Memory Storage
F --> O[Neural Circuits]
O --> P[Synaptic Networks]
P --> Q[Memory Traces]
%% Integration
K --> R[Learning Program]
N --> R
Q --> R
H --> R
R --> S[Behavioral Adaptation]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<!-- Process 7: Aging & Longevity -->
<div class="process-item" id="aging-longevity">
<h3>7. Aging & Longevity</h3>
<p>Detailed analysis of C. elegans Aging & Longevity using the Programming Framework, revealing computational logic and regulatory patterns for lifespan regulation.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Aging Components
A[Age-related Changes] --> B[Insulin/IGF Signaling]
C[Oxidative Stress] --> D[DNA Damage]
E[Protein Homeostasis] --> F[Metabolic Changes]
G[Longevity Pathways] --> H[Lifespan Control]
%% Insulin Signaling
B --> I[DAF-2/DAF-16]
I --> J[FOXO Transcription]
J --> K[Stress Resistance]
%% Oxidative Damage
D --> L[ROS Production]
L --> M[Antioxidant Response]
M --> N[Oxidative Protection]
%% Protein Homeostasis
F --> O[Proteasome Function]
O --> P[Autophagy]
P --> Q[Protein Quality Control]
%% Integration
K --> R[Aging Program]
N --> R
Q --> R
H --> R
R --> S[Lifespan Regulation]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<!-- Process 8: Stress Response -->
<div class="process-item" id="stress-response">
<h3>8. Stress Response</h3>
<p>Detailed analysis of C. elegans Stress Response using the Programming Framework, revealing computational logic and regulatory patterns for environmental adaptation.</p>
<div class="mermaid-container">
<div class="mermaid">
graph TD
%% Stress Components
A[Environmental Stress] --> B[Stress Detection]
C[Stress Signaling] --> D[Stress Response]
E[Adaptation] --> F[Stress Tolerance]
G[Recovery] --> H[Homeostasis]
%% Stress Detection
B --> I[Heat Shock]
I --> J[Oxidative Stress]
J --> K[Osmotic Stress]
%% Stress Signaling
D --> L[HSF-1 Activation]
L --> M[Stress Proteins]
M --> N[Protective Response]
%% Adaptation
F --> O[Metabolic Changes]
O --> P[Behavioral Changes]
P --> Q[Physiological Adaptation]
%% Integration
K --> R[Stress Program]
N --> R
Q --> R
H --> R
R --> S[Stress Survival]
%% Styling - Programming Framework Colors
style A fill:#ff6b6b,color:#fff
style C fill:#ff6b6b,color:#fff
style E fill:#ff6b6b,color:#fff
style G fill:#ff6b6b,color:#fff
style B fill:#ffd43b,color:#000
style D fill:#ffd43b,color:#000
style F fill:#ffd43b,color:#000
style H fill:#ffd43b,color:#000
style I fill:#ffd43b,color:#000
style J fill:#51cf66,color:#fff
style K fill:#51cf66,color:#fff
style L fill:#ffd43b,color:#000
style M fill:#51cf66,color:#fff
style N fill:#51cf66,color:#fff
style O fill:#ffd43b,color:#000
style P fill:#51cf66,color:#fff
style Q fill:#51cf66,color:#fff
style R fill:#74c0fc,color:#fff
style S fill:#b197fc,color:#fff
</div>
<div class="color-legend">
<span><span class="color-box" style="background:#ff6b6b;"></span>Triggers & Conditions</span>
<span><span class="color-box" style="background:#ffd43b;"></span>Catalysts & Enzymes</span>
<span><span class="color-box" style="background:#51cf66;"></span>Chemical Processing</span>
<span><span class="color-box" style="background:#74c0fc;"></span>Intermediates</span>
<span><span class="color-box" style="background:#b197fc;"></span>Products</span>
</div>
</div>
</div>
<div class="footer">
<p><strong>Generated using the Programming Framework methodology</strong></p>
<p>This batch demonstrates the computational nature of C. elegans development and behavior systems</p>
<p>Each flowchart preserves maximum detail through optimized Mermaid configuration</p>
<p><em>Batch 01 of 8: Development & Behavior</em></p>
</div>
</div>
</div>
<script>
mermaid.initialize({
startOnLoad: true,
theme: 'default',
flowchart: {
useMaxWidth: false,
htmlLabels: true,
curve: 'linear',
nodeSpacing: 30,
rankSpacing: 40,
padding: 10
},
themeVariables: {
fontFamily: 'Arial, sans-serif',
fontSize: '14px',
primaryColor: '#ff6b6b',
lineColor: '#333333',
secondaryColor: '#feca57',
tertiaryColor: '#4ecdc4'
}
});
</script>
</body>
</html>