A bacterial immune system,repurposed
CRISPR is not an invention. It is a defence bacteria evolved against viruses, borrowed because it turned out to be programmable.
Fragments of past viral infections stored in the genome as a memory of what to attack next time.
Clustered Regularly Interspaced Short Palindromic Repeats — the spacers between repeats are the memory.
Because targeting is specified by RNA rather than by protein, you can point it anywhere by changing a sequence.
A guide, a protein,and a cut
Three parts, and the reason the technique spread so quickly is that only one of them has to change per target.
Earlier gene-editing tools needed a new protein designed and built for every target. CRISPR needs a new twenty-base RNA sequence, which you can order. That single difference is most of why the field moved from specialist to routine in a few years.
Cas9 is notthe only one
The system comes in families, and the choice between them is usually about what the cut looks like and where it is allowed to happen.
The workhorse. Blunt double-strand break, NGG PAM, best characterised and most widely supported.
A staggered cut and a T-rich PAM, which opens up regions Cas9 cannot reach.
A disabled nuclease fused to an enzyme, changing letters without a double-strand break at all.
Targets RNA rather than DNA, so the effect is transient and the genome is left alone.
Designing the guide,and checking the damage
The wet lab does the editing. The two ends — choosing where to cut and finding out what was cut — are bioinformatics.
$ makeblastdb -in genome.fa -dbtype nucl -out genome
$ blastn -task blastn-short -query guides.fa -db genome -outfmt 6
Guide design is a search problem: find twenty-base sites next to a valid PAM, then score every near match elsewhere in the genome, because a guide that also binds three other places will cut them too. Validation runs the other way — sequence the edited cells deeply and count what fraction carry the intended change against what fraction carry something else.
Both are alignment problems at heart, which is why a CRISPR project ends up with the same tools as any other sequencing project: an aligner, SAMtools, and a genome browser to look at the loci that matter.
BLAST isbeing built
The image and its definition are being verified. When they are done, it deploys by name like the rest.