Editing
CRISPR and Genome Editing
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}} CRISPR and Genome Editing are the revolutionary technologies that allow scientists to "Cut and Paste" DNA with the precision of a word processor. CRISPR (Clustered Regularly Interspaced Short Palindromic Repeats) was originally a primitive "Immune System" used by bacteria to fight viruses, but humans have repurposed it into the most powerful tool in the history of biology. It gives us the ability to delete genetic diseases, design new crops, and potentially rewrite the future of our species. It is a tool of immense promise and profound ethical danger. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''CRISPR-Cas9''' β A specialized protein (Cas9) and an RNA guide used to find and cut specific DNA sequences. * '''Genome Editing''' β The deliberate modification of the genetic material of a living organism. * '''gRNA (Guide RNA)''' β The "GPS" molecule that leads the Cas9 protein to the exact spot on the DNA that needs to be cut. * '''PAM Sequence''' β A short DNA sequence that Cas9 uses as a "Starting Point" to distinguish between target and non-target DNA. * '''NHEJ (Non-Homologous End Joining)''' β The cell's "Quick and Dirty" way of fixing a DNA cut, which often leads to a gene being "Deleted." * '''HDR (Homology-Directed Repair)''' β A more precise repair method used to "Insert" new DNA at the cut site. * '''Base Editing''' β A "CRISPR 2.0" technique that can change a single letter (e.g., C to T) without cutting the DNA. * '''Gene Drive''' β A technology that ensures a specific genetic trait is passed to 100% of offspring, allowing a trait to spread through an entire wild population. * '''Germline Editing''' β Editing the DNA of embryos, sperm, or eggs so the change is passed to all future generations. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Genome editing is understood through '''Search''' and '''Repair'''. '''1. The Search (The GPS)''': Older editing tools (like ZFNs) were hard to program. CRISPR changed everything: * Scientists create a "Guide RNA" that matches the DNA sequence they want to change. * They attach this guide to the **Cas9 protein** (the "Molecular Scissors"). * CRISPR floats through the cell until the guide "Velcroes" onto the target DNA. '''2. The Cut (The Scissors)''': Once Cas9 finds the spot, it snaps shut and cuts through both strands of the DNA. This creates a "Double-Strand Break." '''3. The Repair (The Rewrite)''': The "Magic" of CRISPR actually happens after the cut. The cell's own repair systems take over: * '''To Stop a Gene''': The cell glues the ends back together sloppily, creating a "Junk" sequence that breaks the gene. * '''To Fix a Gene''': Scientists provide a "Template" piece of DNA. The cell sees the template and uses it to "Heal" the cut, effectively pasting the new information into the genome. '''Off-Target Effects''': The biggest danger of CRISPR is "Cutting the wrong spot." If the guide RNA matches a sequence elsewhere in the DNA, CRISPR might accidentally break a healthy gene. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The CRISPR Cut' (Finding the target sequence):''' <syntaxhighlight lang="python"> def find_crispr_target(genome, guide_rna, pam="NGG"): """ Simulates how CRISPR searches for its target. """ # PAM must follow the target for Cas9 to work target_length = len(guide_rna) matches = [] # Simple search for i in range(len(genome) - target_length - 3): snippet = genome[i:i+target_length] potential_pam = genome[i+target_length:i+target_length+3] # Check match and PAM (NGG: N is anything, GG is required) if snippet == guide_rna and potential_pam[1:] == "GG": matches.append(i) return { "Target Found": "YES" if matches else "NO", "Positions": matches } dna = "ATGCGTAAAGGGCTAGCGTAAA" # A small DNA strand guide = "CGTAAA" print(find_crispr_target(dna, guide)) </syntaxhighlight> ; CRISPR Landmarks : '''The Yogurt Discovery (2007)''' β Scientists at a yogurt company realized that bacteria use CRISPR to "Remember" and "Kill" viruses that attack their fermentation vats. : '''Doudna & Charpentier (2012)''' β The landmark paper that showed CRISPR could be used as a general-purpose tool for editing any DNA (Nobel Prize winners). : '''Sickle Cell Cure (2023)''' β The first FDA-approved CRISPR therapy, which "Turns On" a fetal hemoglobin gene to cure a lifelong blood disorder. : '''The 'Designer Baby' Controversy (2018)''' β He Jiankui's announcement of the first CRISPR-edited babies, which sparked global outrage and led to new international regulations. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Somatic vs. Germline Editing ! Feature !! Somatic Editing (Patient) !! Germline Editing (Embryo) |- | Target || Specific cells (e.g., blood) || All cells in the body |- | Inheritance || Not passed to children || Passed to all future generations |- | Ethical Status || Widely accepted as medicine || Extremely controversial / Banned |- | Goal || Curing a disease || "Enhancing" or "Correcting" a lineage |} '''The Concept of "Precision"''': Analyzing why CRISPR is so much better than previous tools. Before CRISPR, changing a gene was like throwing a rock at a window and hoping to hit a specific fly. CRISPR is like using a sniper rifle. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating CRISPR: # '''Accessibility''': CRISPR is so cheap and easy that any lab can do it. Is this a "Democratization" of science or a recipe for biological disaster? # '''Equity''': Will CRISPR only be available to the wealthy, creating a "Genetic Divide" between the rich and poor? # '''Ecology''': Should we use Gene Drives to wipe out mosquitoes? (If we do, what happens to the animals that eat them?). # '''Nature''': Is it "Unnatural" to edit the human genome, or is it just the next step in our evolution? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''CRISPR-Diagnostics''': Using CRISPR to "Sniff Out" virus DNA in minutes (like a COVID test that takes 5 minutes and costs $1). # '''De-Extinction''': Using CRISPR to edit elephant DNA into "Mammoth-like" DNA to restore the Arctic ecosystem. # '''Xenotransplantation''': Editing pig organs to be "Human-like" so they can be transplanted into people without being rejected. # '''Genetic Vaccines''': Editing your own white blood cells to be permanently immune to HIV or Cancer. [[Category:Biology]] [[Category:Genetics]] [[Category:Technology]] </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