-
Notifications
You must be signed in to change notification settings - Fork 1
ATACseq Analysis Recipe
Stephan Reichl edited this page Aug 7, 2024
·
4 revisions
The ATAC-seq Analysis Recipe takes you from unaligned (raw) BAM files derived from a bulk ATAC-seq to enrichment analysis results of your differentially accessible genomic regions while providing unsupervised analyses and genome browser tracks for quality control.
flowchart LR;
ngs_fetch-->atacseq_pipeline;
atacseq_pipeline-->genome_tracks;
atacseq_pipeline-->spilterlize_integrate;
spilterlize_integrate-->unsupervised_analysis;
spilterlize_integrate-->dea_limma;
dea_limma-->enrichment_analysis;
The following Modules are used in this Recipe:
- (optional) Fetch publicly available bulk ATAC-seq data (coming soon).
- ATAC-seq pipeline to quantify chromatin accessibility, resulting in count matrices and annotations.
- Genome Browser Track Visualization for quality control and visual analysis of genomic regions of interest or top hits.
- Split, Filter, Normalize and Integrate Sequencing Data for downstream analysis.
- Unsupervised Analysis for quality control and to understand and visualize similarities and variations between samples.
- Differential Analysis with limma to identify and visualize statistically significant genomic regions that differ between sample groups using linear models.
- Enrichment Analysis for biomedical interpretation of differential analysis results using prior knowledge.
(just notes currently)
- Generate a consensus region set for all (QC'd) samples to cover all potential signals within your feature space e.g., across cell types.
- Subset data for each analysis (e.g., cell type A analysis -> subset to cell type A samples).
- Remove lowly accessible regions in each subset to improve statistical power and reduce statistical estimation issues.
- Perform the desired analysis (e.g., differential accessibility) on the processed subset datasets.
- This approach facilitates integrating common signals across cell types while not losing cell type-specific signals in the respective analyses.
Templates for a Methods section of a scientific publication can be found in each Module's README.
--- COMING SOON ---
--- COMING SOON ---
--- COMING SOON ---