Changes between Version 11 and Version 12 of SOPs/atac_Seq


Ignore:
Timestamp:
08/14/20 11:11:03 (4 years ago)
Author:
byuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/atac_Seq

    v11 v12  
    88 * [#preprocess Pre-process reads](remove adapters and other "contamination")
    99 * [#map Map reads to the genome] (with an unspliced mapping tool)
    10  * Run quality control and calculate QC metrics
     10 * [#Run quality control and calculate QC metrics]
    1111 * [#call_peaks Call ATAC-seq "peaks"] with a high coverage of mapped reads
    1212 * Analyze peak regions for binding motifs
     
    106106
    107107
     108=== [=#Run quality control and calculate QC metrics] ===
     109* Fragment size distribution with ATACseqQC R package:
     110{{{
     111library("ATACseqQC")
    108112
     113bamfile = "foo.bam"
     114bamfile.labels <- gsub(".bam", "", basename(bamfile))
    109115
     116pdf (file=paste(bamfile.labels, "Fragment_size.pdf", sep="_"), w=11, h=8.5)
     117fragSizeDist(bamfile, bamfile.labels)
     118dev.off()
     119
     120}}}
    110121 
    111122