Changes between Version 11 and Version 12 of SOPs/atac_Seq
- Timestamp:
- 08/14/20 11:11:03 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/atac_Seq
v11 v12 8 8 * [#preprocess Pre-process reads](remove adapters and other "contamination") 9 9 * [#map Map reads to the genome] (with an unspliced mapping tool) 10 * Run quality control and calculate QC metrics10 * [#Run quality control and calculate QC metrics] 11 11 * [#call_peaks Call ATAC-seq "peaks"] with a high coverage of mapped reads 12 12 * Analyze peak regions for binding motifs … … 106 106 107 107 108 === [=#Run quality control and calculate QC metrics] === 109 * Fragment size distribution with ATACseqQC R package: 110 {{{ 111 library("ATACseqQC") 108 112 113 bamfile = "foo.bam" 114 bamfile.labels <- gsub(".bam", "", basename(bamfile)) 109 115 116 pdf (file=paste(bamfile.labels, "Fragment_size.pdf", sep="_"), w=11, h=8.5) 117 fragSizeDist(bamfile, bamfile.labels) 118 dev.off() 119 120 }}} 110 121 111 122