Hacker News new | ask | show | jobs
by shpongled 2199 days ago
Close - from my quick skim here's my take

The RNA guide (sgRNA) is chemically caged here, so it has some molecular decorations that are removed with light. The sgRNA can't fully match the underlying DNA it's recognizing until those decorations have been removed with the laser, at which point Cas9 then cleaves the DNA strand.

Think of the sgRNA like a regex pattern. Cas9 is like the regex engine here (but instead of capturing a group, it cuts the sequence), and DNA is the search space. In this system, we essentially have a full match, and Cas9 is in position (having found the match) but it can't cleave yet, because the decorations are blocking the way. As soon as the decorations are removed by light, the sgRNA can move down into a full match, and Cas9 then cleaves.

1 comments

Ah, thank you. So is the benefit of this system that the Cas9 sticks around for a while, and at any point one can cleave all the sites at once instead of cleaving each as the Cas9 bumps into it?
Even in standard CRISPR/Cas9 systems, Cas9 sticks around for quite a while - which is one of the issues in using it for actual medical treatments. You don't really want a programmable DNA cleavage engine roaming around in your nucleus...

The primary benefit here is that you can temporally synchronize Cas9. In standard systems, you introduce Cas9 into the cell, and you have no control over when it performs cleavage, since it's essentially a greedy cleavage mechanism - as soon as it finds a match, it cleaves.

This system basically introduces a semaphore, so that you introduce Cas9, allow it find a match and pause. You can then signal for cleavage to begin. As stated in the abstract, this is useful for e.g. studying the kinetics of DNA repair, since you can control when DNA damage (Cas9 cleavage) is happening.

Fascinating. Thank you so much for taking the time to explain further!