Changes between Version 14 and Version 15 of SOP/PooledCRISPR
- Timestamp:
- 11/24/20 15:36:20 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOP/PooledCRISPR
v14 v15 50 50 * See /nfs/BaRC_Public/BaRC_code/Perl/read_count_CRISPR_guides for this implementation. 51 51 52 '''Implementation 2: using bowtie alignment'''52 '''Implementation 2: If you cannot access to the script in the above folder, you can use bowtie to do the alignment''' 53 53 * Make bowtie index with sgRNA sequences, and ran bowtie to align reads to indexed sgRNAs. 54 54 … … 86 86 87 87 {{{ 88 89 # the options -t and -c specificity the treatment and control samples, respectively. 88 90 mageck test -k count_matrix.txt -t top1,top2 -c bot1,bot2 -n mageck_out.txt 89 # the options -t and -c specificity the treatment and control samples, respectively. 91 92 # For paired samples: 93 mageck test -k count_matrix.txt -t top1,top2 -c bot1,bot2 -n mageck_out.txt --paired 94 90 95 }}} 91 96 … … 106 111 107 112 The output files include, 108 - .summary.pdf file which summarizes (only) the top hits, and also includes a waterfall plot. 113 109 114 - .gene_summary.txt results summarized by gene (for all genes) 110 115 - .sgrna_summary.txt resuls by guide (for all guides); this file can be made into a matrix using a few UNIX commands, e.g. 111 116 117 Run .Rmd to create a file (.summary.pdf) which summarizes (only) the top hits, and also includes a waterfall plot. 112 118 113 119 {{{