Changes between Version 14 and Version 15 of SOP/PooledCRISPR


Ignore:
Timestamp:
11/24/20 15:36:20 (4 years ago)
Author:
byuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOP/PooledCRISPR

    v14 v15  
    5050* See /nfs/BaRC_Public/BaRC_code/Perl/read_count_CRISPR_guides for this implementation.
    5151
    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'''
    5353* Make bowtie index with sgRNA sequences, and ran bowtie to align reads to indexed sgRNAs.
    5454
     
    8686
    8787{{{
     88
     89# the options -t and -c specificity the treatment and control samples, respectively.
    8890mageck 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:
     93mageck test -k count_matrix.txt -t top1,top2 -c bot1,bot2 -n mageck_out.txt --paired
     94
    9095}}}
    9196
     
    106111
    107112The output files include,
    108   - .summary.pdf file which summarizes (only) the top hits, and also includes a waterfall plot.
     113
    109114  - .gene_summary.txt results summarized by gene (for all genes)
    110115  - .sgrna_summary.txt resuls by guide (for all guides); this file can be made into a matrix using a few UNIX commands, e.g.
    111116
     117Run .Rmd to create a file (.summary.pdf) which summarizes (only) the top hits, and also includes a waterfall plot.
    112118
    113119{{{