Changes between Version 8 and Version 9 of SOP/PooledCRISPR


Ignore:
Timestamp:
03/21/19 16:03:38 (6 years ago)
Author:
byuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOP/PooledCRISPR

    v8 v9  
    5353* Make bowtie index with sgRNA sequences, and ran bowtie to align reads to indexed sgRNAs.
    5454
    55 * Sample commands with 0 mismatch in the alignment:
     55* Sample commands with 0 mismatch in the alignment, with 20bp long sequence
    5656* bowtie-build guide.fa guide
    5757* bowtie  -3 20 -n 0  -l 20 -p 4  -S guide foo.fq.gz foo.sam
     
    6464* Note: don't use --best nor -m with bowtie
    6565
     66* Command to assign read counts for each sgRNA:
     67* grep -v ^\@ foo.sam | awk -F"\t" '{ if($2==0 && $13=="MD:Z:20") print $3 }' |sort |uniq -c |awk '{ print $2"\t"$1 }'
    6668
    67