Changes between Version 21 and Version 22 of SOPs/chip_seq_peaks
- Timestamp:
- 07/23/15 15:22:10 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/chip_seq_peaks
v21 v22 264 264 265 265 * Method 1: Run IDR to identify reproducible peaks 266 * Method 2: Intersect bound regions (peaks) 266 * Method 2: Use MACS2 [[https://github.com/taoliu/MACS/wiki/Call-differential-binding-events | bdgdiff]]. bedGraph (.bdg) files are required. 267 * Method 3: Intersect bound regions (peaks) 267 268 * This binary comparison asks simply, "Is each peak in sample A present in sample B (and vice versa)?" 268 269 * This ignores the enrichment/score of each peak and gives each non-peak a score of 0. 269 * Method 3: Compare affinity (number of mapped reads) across bound regions270 * Method 4: Compare affinity (number of mapped reads) across bound regions 270 271 * Filter out redundant reads from each BAM file with a command like 'samtools rmdup'. 271 272 * Merge peaks of all samples (and make non-redundant): … … 274 275 * intersectBed -bed -wb -abam Reads_1.noDups.bam -b Peaks.bed | cut -f13-15 | mergeBed -i stdin -n > Peak_counts.reads_1.bed 275 276 * Modify counts per peak to account for differing numbers of mapped reads. 276 * Method 4: Use [[http://code.google.com/p/ngsplot/ | ngsplot]] to make stacked heatmapsof peaks for each sample277 277 * Method 5: Use [[https://github.com/shenlab-sinai/ngsplot | ngsplot]] to make stacked heatmaps,and profiles, of peaks for each sample 278