Hacker News new | ask | show | jobs
by SuoDuanDao 2199 days ago
I'm at the limit of my understanding myself, but here's what I think is being said:

CRISPR refers to the kind of DNA site that can be targeted for cleavage, while CAS9 is a protein that, paired with an RNA matching that site, can cleave wherever it encounters a matching sequence.

I think these guys are pairing a variation of the CRISPR approach with a laser. They pre-bond with the DNA, but the actual cleavage occurs when they shine a laser at the right frequency at the site. That lets them decide when and where on the DNA strand cleavage happens.

If anyone understands this better than me, I'd appreciate any corrections to my explanation ;P

2 comments

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.

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!
I am fortunate to have had a colleague explain it to me but this is my understanding as well. Normally the cleavage would take time with possible undesired effects as a result of the process.