Editing
CRISPR and Genome Editing
(section)
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!
== <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;">
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)
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