Changes between Version 4 and Version 5 of SOP/PooledCRISPR


Ignore:
Timestamp:
03/21/19 15:55:45 (6 years ago)
Author:
byuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOP/PooledCRISPR

    v4 v5  
    5151
    5252'''Implementation 2: using bowtie alignment'''
     53* Make bowtie index with sgRNA sequences, and ran bowtie to align reads to indexed sgRNAs.
     54* Sample commands with 0 mismatch in the alignment
     55** bowtie-build guide.fa guide
     56** bowtie  -3 20 -n 0  -l 20 -p 4  -S guide foo.fq.gz foo.sam
     57
     58*** -3: trim <int> bases from 3' end of reads
     59*** -n: <int> max mismatches in seed (can be 0-3, default: -n 2)
     60*** -l: <int> seed length for -n (default: 28)
     61*** -p: <int> number of alignment threads to launch (default: 1)
    5362
    5463
     64