Editing
Phylogenetics
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Phylogenetics is the study of the evolutionary history and relationships among individuals or groups of organisms. It is the science of building the '''Tree of Life'''. While ancient scientists grouped animals by what they looked like (e.g., "Things that fly"), phylogenetics groups them by '''Who they are related to'''. By using DNA sequencing and mathematical models, phylogeneticists can "calculate" the exact distance between a human and a mushroom, or trace every living thing back to a single shared ancestor ('''LUCA'''). It is the ultimate "History Book" of our planet, written in the code of life. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Phylogenetics''' β The study of evolutionary relationships among biological entities. * '''Phylogenetic Tree''' β A diagram that represents evolutionary relationships among organisms. * '''Clade''' β A group of organisms believed to have evolved from a common ancestor (a "Branch" on the tree). * '''Common Ancestor''' β An individual or species from which two or more later species are descended. * '''LUCA (Last Universal Common Ancestor)''' β The most recent population of organisms from which all organisms now living on Earth have a common descent. * '''Node''' β A point on a tree where a branch splits, representing a speciation event. * '''Root''' β The base of the tree, representing the oldest common ancestor of all the entities in the tree. * '''Taxon''' β A group of one or more populations of an organism or organisms seen by taxonomists to form a unit. * '''Molecular Clock''' β A technique that uses the mutation rate of biomolecules to deduce the time when two life forms diverged. * '''Parsimony''' β The principle that the simplest explanation (the one with the fewest evolutionary changes) is usually the correct one. * '''Homology''' β Similarity in characteristics resulting from shared ancestry (e.g., bones in a whale fin and human hand). * '''Analogy (Homoplasy)''' β Similarity in characteristics due to similar environments, not shared ancestry (e.g., wings of a bird and a bee). * '''DNA Sequencing''' β The process of determining the nucleic acid sequenceβthe order of nucleotides in DNA. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Phylogenetics is understood through '''Shared Derived Traits''' and '''Molecular Distance'''. '''1. The Tree Metaphor''': A phylogenetic tree is a "Map of Time." * '''The Tips''': Living species. * '''The Nodes''': The "Grandparents." * '''The Branches''': The time spent evolving independently. If two species share a recent "Node," they are more related (e.g., Humans and Chimps share a node 6 million years ago; Humans and Dogs share a node 90 million years ago). '''2. Morphological vs. Molecular''': * '''Old Way (Morphology)''': Grouping by physical traits. This was often wrong because of '''Convergent Evolution''' (where different animals evolve to look the same, like Sharks and Dolphins). * '''New Way (Molecular)''': Comparing the "Letters" of the DNA (A, T, C, G). If a human and a monkey have the same 1,000 letters, but a human and a fish have 500 different ones, the human is "closer" to the monkey. '''3. The Principle of Parsimony''': If you find three animals with "Blue Fur," and two are closely related, it's most likely that the "Blue Fur" evolved '''Once''' in their common ancestor. The alternative (that it evolved twice by accident) is less likely. Scientists always look for the "Simplest Path." '''The Horizontal Gene Transfer (HGT)''': In bacteria, the "Tree of Life" looks more like a "Web." Bacteria can "swap" genes with each other like trading cards. This makes phylogenetics very difficult for microorganisms but explains why antibiotic resistance spreads so fast. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Molecular Clock' (Dating the Past):''' <syntaxhighlight lang="python"> def estimate_divergence_time(diff_percent, mutation_rate_per_million_years): """ Shows how DNA acts as a 'Clock'. """ # Time = Difference / (2 * Rate) # The '2' is because both branches are mutating. time_mya = diff_percent / (2 * mutation_rate_per_million_years) return time_mya # Scenario: Two species have 2.0% difference in a gene. # Rate is 0.1% per million years. print(f"Diverged: {estimate_divergence_time(2.0, 0.1):.1f} million years ago") # This is how we know 'When' the dinosaurs died or 'When' # humans left Africa. </syntaxhighlight> ; Phylogenetic Landmarks : '''The Three Domains (1990)''' β Carl Woese used phylogenetics to prove that life isn't just "Plants vs. Animals," but three giant groups: Bacteria, Archaea, and Eukarya. : '''Human-Chimp Divergence''' β DNA proved we are 98.8% identical to chimpanzees, confirming Darwin's prediction. : '''The Whale-Hippo Connection''' β Molecular data shocked the world by proving that Whales are most closely related to Hippopotamuses, not sharks or fish. : '''COVID-19 Tracking''' β Real-time phylogenetics allowed scientists to track every mutation of the virus as it spread across the globe. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Homology vs. Analogy ! Feature !! Homology (Related) !! Analogy (Coincidence) |- | Cause || Shared Ancestry || Shared Environment / Need |- | Example || Human Arm / Bat Wing || Bat Wing / Butterfly Wing |- | DNA Evidence || High similarity || Low similarity |- | Analogy || Two people with the same last name || Two people wearing the same shirt |} '''The Concept of "Monophyly"''': A "True" group in biology must include the ancestor and '''all''' of its descendants. For example, "Reptiles" as a group is technically wrong unless you include Birds (because birds evolved from reptiles). Analyzing these "Missing Branches" is how we fix the errors in ancient biology books. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating a phylogenetic tree: # '''Bootstrap Support''': How many times did the computer find the same tree when it "shuffled" the data (High % = High trust)? # '''Outgroup''': Did the scientist include a "distant relative" (like a fish for a mammal tree) to "root" the tree correctly? # '''Gene Choice''': Did they use a "fast-mutating" gene (good for recent history) or a "slow-mutating" one (good for ancient history)? # '''Incomplete Lineage Sorting''': Dealing with the fact that sometimes genes "lie" about the history because of random sorting. </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''Phylogenomics''': Using the ''entire'' genome instead of just one gene to build the most perfect tree possible. # '''Paleo-genetics''': Extracting DNA from 100,000-year-old bones to put "ghost species" (like Neanderthals) onto the tree. # '''Metagenomics''': Building a tree for an entire "Ecosystem" (like a scoop of soil) without ever seeing the individual animals. # '''AI-Tree Building''': Using machine learning to sort through the billions of possible trees to find the one that fits the data best. [[Category:Biology]] [[Category:Evolutionary Biology]] [[Category:Science]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information