|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Biological Computing Systems: Complete Overview</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, 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: 3rem; |
|
|
text-align: center; |
|
|
} |
|
|
.header h1 { |
|
|
margin: 0; |
|
|
font-size: 3rem; |
|
|
font-weight: 300; |
|
|
} |
|
|
.content { |
|
|
padding: 2rem; |
|
|
} |
|
|
.intro { |
|
|
background: #f8f9fa; |
|
|
padding: 2rem; |
|
|
border-radius: 8px; |
|
|
margin-bottom: 2rem; |
|
|
} |
|
|
.collection-grid { |
|
|
display: grid; |
|
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); |
|
|
gap: 1.5rem; |
|
|
margin: 2rem 0; |
|
|
} |
|
|
.collection-card { |
|
|
background: #f8f9fa; |
|
|
padding: 1.5rem; |
|
|
border-radius: 8px; |
|
|
border-left: 4px solid #007bff; |
|
|
transition: transform 0.2s; |
|
|
} |
|
|
.collection-card:hover { |
|
|
transform: translateY(-2px); |
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1); |
|
|
} |
|
|
.collection-card h3 { |
|
|
color: #495057; |
|
|
margin-bottom: 1rem; |
|
|
} |
|
|
.collection-card a { |
|
|
color: #007bff; |
|
|
text-decoration: none; |
|
|
font-weight: 500; |
|
|
} |
|
|
.collection-card a:hover { |
|
|
text-decoration: underline; |
|
|
} |
|
|
.stats-section { |
|
|
background: #e9ecef; |
|
|
padding: 2rem; |
|
|
border-radius: 8px; |
|
|
margin: 2rem 0; |
|
|
} |
|
|
.stats-grid { |
|
|
display: grid; |
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); |
|
|
gap: 1rem; |
|
|
margin-top: 1rem; |
|
|
} |
|
|
.stat-item { |
|
|
background: white; |
|
|
padding: 1rem; |
|
|
border-radius: 6px; |
|
|
text-align: center; |
|
|
} |
|
|
.stat-number { |
|
|
font-size: 2rem; |
|
|
font-weight: bold; |
|
|
color: #007bff; |
|
|
} |
|
|
.concepts-section { |
|
|
background: #f8f9fa; |
|
|
padding: 2rem; |
|
|
border-radius: 8px; |
|
|
margin: 2rem 0; |
|
|
} |
|
|
.concepts-grid { |
|
|
display: grid; |
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
|
|
gap: 1rem; |
|
|
margin-top: 1rem; |
|
|
} |
|
|
.concept-item { |
|
|
background: white; |
|
|
padding: 1rem; |
|
|
border-radius: 6px; |
|
|
border-left: 3px solid #28a745; |
|
|
} |
|
|
.footer { |
|
|
background: #f8f9fa; |
|
|
padding: 2rem; |
|
|
text-align: center; |
|
|
border-top: 1px solid #dee2e6; |
|
|
margin-top: 2rem; |
|
|
} |
|
|
.highlight { |
|
|
background: #d1ecf1; |
|
|
padding: 1rem; |
|
|
border-left: 4px solid #17a2b8; |
|
|
margin: 1rem 0; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body> |
|
|
<div class="container"> |
|
|
<div class="header"> |
|
|
<h1>🧬 Biological Computing Systems</h1> |
|
|
<p>Complete Overview of Computational Biology Collections</p> |
|
|
<p><em>From Cellular Processes to Advanced Biological Logic</em></p> |
|
|
</div> |
|
|
<div class="content"> |
|
|
<div class="intro"> |
|
|
<h2>The Universal Computational Nature of Biology</h2> |
|
|
<p>This comprehensive collection demonstrates that <strong>computation is fundamental to all biological systems</strong>. From individual cellular processes to complex developmental programs, from viral decision circuits to circadian clocks, biology implements sophisticated computational logic at every level of organization.</p> |
|
|
<div class="highlight"> |
|
|
<strong>Revolutionary Insight:</strong> The Programming Framework methodology reveals that biological systems are not merely analogous to computers - they ARE computers, implementing algorithms, logic gates, decision trees, temporal programs, and optimization systems through molecular interactions. |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="stats-section"> |
|
|
<h2>📊 Collection Statistics</h2> |
|
|
<div class="stats-grid"> |
|
|
<div class="stat-item"> |
|
|
<div class="stat-number">545</div> |
|
|
<div>Total Processes</div> |
|
|
</div> |
|
|
<div class="stat-item"> |
|
|
<div class="stat-number">65</div> |
|
|
<div>Individual Collections</div> |
|
|
</div> |
|
|
<div class="stat-item"> |
|
|
<div class="stat-number">7</div> |
|
|
<div>Kingdoms/Systems</div> |
|
|
</div> |
|
|
<div class="stat-item"> |
|
|
<div class="stat-number">Complete</div> |
|
|
<div>Programming Framework</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<h2>🧠 Neural Computation Systems</h2> |
|
|
<div class="collection-grid"> |
|
|
<div class="collection-card"> |
|
|
<h3>🧠 Neural Plasticity & Learning</h3> |
|
|
<p><strong>40 neural computation processes across 5 batch files</strong></p> |
|
|
<p>Advanced neural computation systems demonstrating sophisticated biological computing architectures in neural networks.</p> |
|
|
<ul> |
|
|
<li><a href="neural_plasticity_batch01_synaptic_plasticity.html">Synaptic Plasticity Mechanisms (LTP/LTD/Synaptic Scaling)</a></li> |
|
|
<li><a href="neural_plasticity_batch02_sensory_processing.html">Sensory Processing Algorithms (Visual/Auditory/Olfactory)</a></li> |
|
|
<li><a href="neural_plasticity_batch03_memory_formation.html">Memory Formation Systems (Consolidation/Retrieval/Extinction)</a></li> |
|
|
<li><a href="neural_plasticity_batch04_motor_control.html">Motor Control Systems (Planning/Execution/Learning)</a></li> |
|
|
<li><a href="neural_plasticity_batch05_decision_making.html">Neural Decision-Making (Winner-Take-All/Lateral Inhibition)</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<h2>🚀 New Strategic Collections</h2> |
|
|
<div class="collection-grid"> |
|
|
<div class="collection-card"> |
|
|
<h3>🧬 Bacterial Decision Systems</h3> |
|
|
<p><strong>8 chemotaxis and environmental adaptation processes</strong></p> |
|
|
<p>Sophisticated decision-making systems for bacterial environmental adaptation and chemotaxis.</p> |
|
|
<ul> |
|
|
<li><a href="bacterial_decision_systems_batch01_chemotaxis.html">Chemotaxis & Environmental Adaptation</a></li> |
|
|
<li>Multi-input integration, threshold-based decisions, adaptive behavior, state machine logic</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>⏰ Temporal Programming Systems</h3> |
|
|
<p><strong>8 cell cycle timing and checkpoint decision processes</strong></p> |
|
|
<p>Advanced temporal programming systems demonstrating sophisticated timing and checkpoint mechanisms.</p> |
|
|
<ul> |
|
|
<li><a href="temporal_programming_systems_batch01_cell_cycle.html">Cell Cycle Timing & Checkpoint Decisions</a></li> |
|
|
<li>G1/S checkpoint, G2/M checkpoint, spindle assembly, DNA damage response, cytokinesis timing</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🧬 Synthetic Biology Circuits</h3> |
|
|
<p><strong>8 genetic logic gates and computational circuit processes</strong></p> |
|
|
<p>Engineered biological computing systems demonstrating programmable logic and memory.</p> |
|
|
<ul> |
|
|
<li><a href="synthetic_biology_circuits_batch01_logic_gates.html">Genetic Logic Gates & Computational Circuits</a></li> |
|
|
<li>AND gates, OR gates, NOT gates, NAND gates, NOR gates, XOR gates, flip-flop memory</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🔄 Evolutionary Computing Systems</h3> |
|
|
<p><strong>8 adaptive evolution and selection mechanism processes</strong></p> |
|
|
<p>Evolutionary algorithms and selection systems demonstrating biological optimization.</p> |
|
|
<ul> |
|
|
<li><a href="evolutionary_computing_systems_batch01_adaptive_evolution.html">Adaptive Evolution & Selection Mechanisms</a></li> |
|
|
<li>Natural selection, genetic drift, mutation-selection balance, adaptive radiation, coevolution</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🧠 Information Processing Systems</h3> |
|
|
<p><strong>8 signal integration and noise filtering processes</strong></p> |
|
|
<p>Advanced information processing systems demonstrating biological signal processing.</p> |
|
|
<ul> |
|
|
<li><a href="information_processing_systems_batch01_signal_integration.html">Signal Integration & Noise Filtering</a></li> |
|
|
<li>Signal amplification, noise filtering, cross-talk integration, feedback regulation, signal transduction</li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<h2>🏛️ Complete Collections</h2> |
|
|
<div class="collection-grid"> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🧬 Yeast Cellular Processes</h3> |
|
|
<p><strong>184 processes across 23 batch files</strong></p> |
|
|
<p>Comprehensive eukaryotic cellular programming system demonstrating sophisticated computational architecture.</p> |
|
|
<ul> |
|
|
<li>Complete Collection (Individual Batch Files)</li> |
|
|
<li><a href="Yeast_Processes_as_Programs.html">Featured Analysis</a></li> |
|
|
<li>Individual batch files: DNA replication, cell cycle, protein synthesis, signal transduction, energy metabolism, and more</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🦠 E. coli Cellular Processes</h3> |
|
|
<p><strong>125 processes across 15 batch files</strong></p> |
|
|
<p>Complete bacterial cellular programming system covering all major prokaryotic computational systems.</p> |
|
|
<ul> |
|
|
<li><a href="ecoli_10_processes.html">Featured Processes</a></li> |
|
|
<li>Individual batch files: DNA replication, cell division, gene regulation, metabolism, stress response, and communication</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🌱 Arabidopsis thaliana</h3> |
|
|
<p><strong>8 photosynthesis and development processes</strong></p> |
|
|
<p>Plant model organism demonstrating photosynthetic computing and developmental programming.</p> |
|
|
<ul> |
|
|
<li><a href="a_thaliana_batch01_photosynthesis_development.html">Photosynthesis & Development</a></li> |
|
|
<li>Light harvesting, carbon fixation, developmental signaling, stress responses</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🦟 Drosophila melanogaster</h3> |
|
|
<p><strong>8 development and genetics processes</strong></p> |
|
|
<p>Insect model organism demonstrating developmental programming and genetic regulation.</p> |
|
|
<ul> |
|
|
<li><a href="d_melanogaster_batch01_development_genetics.html">Development & Genetics</a></li> |
|
|
<li>Pattern formation, cell fate specification, genetic networks, morphogenesis</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🪱 Caenorhabditis elegans</h3> |
|
|
<p><strong>8 development and behavior processes</strong></p> |
|
|
<p>Nematode model organism demonstrating behavioral computing and developmental logic.</p> |
|
|
<ul> |
|
|
<li><a href="c_elegans_batch01_development_behavior.html">Development & Behavior</a></li> |
|
|
<li>Cell lineage, neural circuits, behavioral responses, developmental timing</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🦠 Viral Computing Systems</h3> |
|
|
<p><strong>24 viral processes across 4 systems</strong></p> |
|
|
<p>Viral decision-making and programming systems demonstrating biological logic gates and temporal control.</p> |
|
|
<ul> |
|
|
<li><a href="phage_lambda_decision_switch.html">Phage λ Decision Switch (10 processes)</a></li> |
|
|
<li><a href="phage_t7_time_cascade.html">Phage T7 Time Cascade (10 processes)</a></li> |
|
|
<li><a href="sars_cov2_batch01_entry_replication.html">SARS-CoV-2 Entry & Replication (8 processes)</a></li> |
|
|
<li><a href="hiv1_batch01_replication_evasion.html">HIV-1 Replication & Immune Evasion (8 processes)</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🦠 Bacterial Pathogen Systems</h3> |
|
|
<p><strong>32 pathogenicity processes across 4 species</strong></p> |
|
|
<p>Pathogenic bacterial computing systems demonstrating virulence programming and host interaction logic.</p> |
|
|
<ul> |
|
|
<li><a href="s_enterica_batch01_invasion_virulence.html">Salmonella enterica Invasion & Virulence (8 processes)</a></li> |
|
|
<li><a href="s_aureus_batch01_pathogenicity_biofilm.html">Staphylococcus aureus Pathogenicity & Biofilm (8 processes)</a></li> |
|
|
<li><a href="m_tuberculosis_batch01_dormancy_persistence.html">Mycobacterium tuberculosis Dormancy & Persistence (8 processes)</a></li> |
|
|
<li><a href="p_aeruginosa_batch01_virulence_pathogenicity.html">Pseudomonas aeruginosa Virulence & Pathogenicity (8 processes)</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🧬 B. subtilis Sporulation</h3> |
|
|
<p><strong>10 developmental programming processes</strong></p> |
|
|
<p>Sophisticated environmental decision-making and developmental cascade programming.</p> |
|
|
<ul> |
|
|
<li><a href="b_subtilis_sporulation.html">Complete Analysis</a></li> |
|
|
<li>Spo0A phosphorelay, sigma cascades, cell-cell signaling, engulfment checkpoints, spore maturation</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>⏰ KaiABC Circadian Clock</h3> |
|
|
<p><strong>10 biochemical oscillator processes</strong></p> |
|
|
<p>The paradigm of biological temporal computing with autonomous oscillation and temperature compensation.</p> |
|
|
<ul> |
|
|
<li><a href="kaiabc_circadian_clock.html">Complete Analysis</a></li> |
|
|
<li>KaiC ATPase cycle, KaiA activation, KaiB sequestration, ordered phosphorylation, entrainment logic</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🌙 Neurospora Circadian Clock</h3> |
|
|
<p><strong>10 eukaryotic temporal processes</strong></p> |
|
|
<p>Eukaryotic transcriptional oscillator with light input and temperature compensation.</p> |
|
|
<ul> |
|
|
<li><a href="neurospora_circadian_clock.html">Complete Analysis</a></li> |
|
|
<li>WCC light activation, frq transcription, FRQ phosphorylation, interlocked loops, photoadaptation</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>🌱 Photosynthesis Energy System</h3> |
|
|
<p><strong>12 energy conversion processes</strong></p> |
|
|
<p>Nature's most sophisticated energy conversion system demonstrating biological optimization.</p> |
|
|
<ul> |
|
|
<li><a href="photosynthesis_light_energy_conversion.html">Complete Analysis</a></li> |
|
|
<li>Light harvesting, photosystems I & II, electron transport, ATP synthesis, Calvin cycle, energy balance</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="collection-card"> |
|
|
<h3>📚 Foundational Theory</h3> |
|
|
<p><strong>Genome-as-Computer-Program Thesis</strong></p> |
|
|
<p>The theoretical framework establishing computational thinking in biology from 1995 to present.</p> |
|
|
<ul> |
|
|
<li><a href="index.html">Complete Paper</a></li> |
|
|
<li>Historical development, β-galactosidase evolution, theoretical foundations, AI-assisted analysis</li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="concepts-section"> |
|
|
<h2>💡 Computational Concepts Demonstrated</h2> |
|
|
<div class="concepts-grid"> |
|
|
<div class="concept-item"> |
|
|
<strong>Decision Logic</strong><br> |
|
|
Binary switches, bistable systems, competitive inhibition, threshold detection |
|
|
</div> |
|
|
<div class="concept-item"> |
|
|
<strong>Temporal Programming</strong><br> |
|
|
Genetic timers, scheduled execution, temporal cascades, oscillatory circuits |
|
|
</div> |
|
|
<div class="concept-item"> |
|
|
<strong>Developmental Programs</strong><br> |
|
|
State machines, cell fate specification, morphogenetic programs, commitment switches |
|
|
</div> |
|
|
<div class="concept-item"> |
|
|
<strong>Environmental Computing</strong><br> |
|
|
Sensor networks, signal integration, adaptive responses, environmental tracking |
|
|
</div> |
|
|
<div class="concept-item"> |
|
|
<strong>Energy Optimization</strong><br> |
|
|
Efficiency algorithms, resource allocation, metabolic control, energy conversion |
|
|
</div> |
|
|
<div class="concept-item"> |
|
|
<strong>Information Processing</strong><br> |
|
|
Signal transduction, noise filtering, amplification, memory storage |
|
|
</div> |
|
|
<div class="concept-item"> |
|
|
<strong>Quality Control</strong><br> |
|
|
Error detection, checkpoint systems, repair mechanisms, system maintenance |
|
|
</div> |
|
|
<div class="concept-item"> |
|
|
<strong>Network Architecture</strong><br> |
|
|
Feedback loops, feed-forward circuits, modular design, distributed control |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="intro"> |
|
|
<h2>🔬 Scientific Impact</h2> |
|
|
<p>This collection represents a paradigm shift in our understanding of biological systems. Through systematic application of the Programming Framework methodology across 545 biological processes, we have demonstrated that:</p> |
|
|
<ul> |
|
|
<li><strong>Biology IS computation</strong> - not just analogous to it</li> |
|
|
<li><strong>Universal computational patterns</strong> exist across all kingdoms of life</li> |
|
|
<li><strong>Complex behaviors emerge</strong> from well-defined algorithmic processes</li> |
|
|
<li><strong>Engineering principles</strong> can be directly applied to biological systems</li> |
|
|
<li><strong>Predictive models</strong> can be built from computational logic</li> |
|
|
<li><strong>Neural systems</strong> implement sophisticated learning and decision-making algorithms</li> |
|
|
</ul> |
|
|
<div class="highlight"> |
|
|
<strong>Innovation Achievement:</strong> This work demonstrates how individual researchers, working with AI tools, can make significant contributions to our understanding of life's computational nature - representing a new era in computational biology research spanning cellular processes, neural computation, viral programming, and pathogenic systems. |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="footer"> |
|
|
<p><strong>Generated using the Programming Framework methodology</strong></p> |
|
|
<p>This overview demonstrates the universal computational nature of biological systems across viral, bacterial, and eukaryotic kingdoms, from cellular processes to advanced biological logic systems.</p> |
|
|
<p><em>Biological Computing Systems: Evidence for the computational nature of life</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> |