Changes between Version 8 and Version 9 of SOP/PooledCRISPR
- Timestamp:
- 03/21/19 16:03:38 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOP/PooledCRISPR
v8 v9 53 53 * Make bowtie index with sgRNA sequences, and ran bowtie to align reads to indexed sgRNAs. 54 54 55 * Sample commands with 0 mismatch in the alignment :55 * Sample commands with 0 mismatch in the alignment, with 20bp long sequence 56 56 * bowtie-build guide.fa guide 57 57 * bowtie -3 20 -n 0 -l 20 -p 4 -S guide foo.fq.gz foo.sam … … 64 64 * Note: don't use --best nor -m with bowtie 65 65 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 }' 66 68 67