A Snakemake 8 workflow implementation of the BSF's ATAC-seq Data Processing Pipeline extended by downstream quantification and annotation steps using Bash and Python.
Note
This workflow adheres to the module specifications of MrBiomics, an effort to augment research by modularizing (biomedical) data science. For more details, instructions, and modules check out the project's repository.
⭐️ Star and share modules you find valuable 📤 - help others discover them, and guide our future work!
Important
If you use this workflow in a publication, please don't forget to give credit to the authors by citing it using this DOI 10.5281/zenodo.6323634.
- Stephan Reichl
- Bekir Ergüner
- Daniele Barreca
- Lukas Folkman
- Fangwen Zhao
- Lina Dobnikar
- Christoph Bock
This project wouldn't be possible without the following software and their dependencies:
Software | Reference (DOI) |
---|---|
bedtools | https://doi.org/10.1093/bioinformatics/btq033 |
Bowtie2 | https://doi.org/10.1038/nmeth.1923 |
deeptools | https://doi.org/10.1093/nar/gkw257 |
ENCODE | https://doi.org/10.1038/s41598-019-45839-z |
fastp | https://doi.org/10.1093/bioinformatics/bty560 |
HOMER | https://doi.org/10.1016/j.molcel.2010.05.004 |
MACS2 | https://doi.org/10.1186/gb-2008-9-9-r137 |
MultiQC | https://doi.org/10.1093/bioinformatics/btw354 |
pybedtools | https://doi.org/10.1093/bioinformatics/btr539 |
pandas | https://doi.org/10.5281/zenodo.3509134 |
samblaster | https://doi.org/10.1093/bioinformatics/btu314 |
samtools | https://doi.org/10.1093/bioinformatics/btp352 |
Snakemake | https://doi.org/10.12688/f1000research.29032.2 |
UROPA | https://doi.org/10.1038/s41598-017-02464-y |
This is a template for the Methods section of a scientific publication and is intended to serve as a starting point. Only retain paragraphs relevant to your analysis. References [ref] to the respective publications are curated in the software table above. Versions (ver) have to be read out from the respective conda environment specifications (workflow/envs/*.yaml file
) or post-execution in the result directory (atacseq_pipeline/envs/*.yaml
). Parameters that have to be adapted depending on the data or workflow configurations are denoted in squared brackets e.g., [X].
Processing. Sequencing adapters were removed using the software fastp (ver) [ref]. Bowtie2 (ver) [ref] was used for the alignment of the short reads (representing locations of transposition events) to the [GRCh38 (hg38)/GRCm38 (mm10)] assembly of the [human/mouse] genome using the “--very-sensitive” parameter. PCR duplicates were marked using samblaster (ver) [ref]. Aligned BAM files were then sorted, filtered using ENCODE blacklisted regions [ref], samtools view flags [SAM_flag], and indexed using samtools (ver) [ref]. To detect the open chromatin regions, peak calling was performed using MACS2 (ver) [ref] using the “--nomodel”, “--keep-dup [macs2_keep_dup]” and “--extsize 147” options on each sample. HOMER (ver) [ref] function findMotifs was used for motif enrichment analysis of the detected open chromatin regions. Quality control metrics were aggregated and reported using MultiQC (ver) [ref], [X] sample(s) needed to be removed.
Quantification. A consensus region set, comprising of [X] genomic regions, was generated, by merging the identified peak summits, extended by [slop_extension]bp on both sides using the slop function from bedtools (ver) [ref] and pybedtools (ver) [ref], across all samples while again discarding peaks overlapping blacklisted features as defined by the ENCODE project [ref]. The consensus region set was used to quantify the chromatin accessibility in each sample by summing the number of reads overlapping each consensus region. The consensus region set, and sample-wise quantification of accessibility was performed using bedtools (ver) [ref] and pybedtools (ver) [ref]. Furthermore, the consensus region set was used to quantify the peak support per sample and each region was mapped to its closest TSS according to the HOMER annotation within proximal TSS up and downstream distances [proximal_size_up/down] yielding a gene/TSS-based quantification. Complementary, all promoter regions, defined by the same parameters, were quantified for each sample and aggregated to yield a gene/promoter-based quantification. Finally, all sample-wise enriched known motifs according to HOMER were aggregated.
Annotation. Consensus regions were annotated using annotatePeaks function from HOMER (ver) [ref]. Additionally, we annotated all consensus regions using UROPA (ver) [ref] and genomic features from the [GENCODE vX] basic gene annotation as: “TSS proximal” if the region’s midpoint was within [X] bp upstream or [X] bp downstream from a TSS, or if the region overlapped with a TSS; “gene body” if the region overlapped with a gene; “distal” if the region’s midpoint was within [X] bp of a TSS; and “intergenic” otherwise. For each region, only the closest feature was considered, and the annotations took precedence in the following order: TSS proximal, gene body, distal, and intergenic. Finally, bedtools was employed to quantify nucleotide counts and proportional content per consensus region.
The processing and quantification described here was performed using a publicly available Snakemake [ver] (ref) workflow [10.5281/zenodo.6323634].
- Processing (
results/
)- Alignment of both single-end and paired-end reads in raw/unaligned BAM format with Bowtie2.
- Filtering using
samtools view
can be configured using SAM Flags (SAM_flag
).
- Filtering using
- Peak calling with
MACS2
.- Duplicate handling can be configured using
macs2_keep_dup
. - Even though the peak support of a region in a certain sample is 0, does not mean that there are no reads counted in the count matrix, it just states that there was no peak called.
- The peak support can be >1 for certain samples in case of a consensus region spanning more than one peak within the respective sample.
- Duplicate handling can be configured using
- Peak annotation and motif analysis HOMER.
- Quantification of TSS coverage.
- Alignment of both single-end and paired-end reads in raw/unaligned BAM format with Bowtie2.
- Reporting (
report/
)- MultiQC report generation using MultiQC, extended with an in-house developed plugin atacseq_report.
- Quantification (
counts/
)- Consensus region set generation across all called peaks (
consensus_regions.bed
). - Read count quantification of the consensus regions across samples, yielding a count matrix with dimensions consensus regions X samples (
consensus_counts.csv
). - Peak support quantification of the consensus regions across samples, yielding a count matrix with dimensions consensus regions X samples (
support_counts.csv
). - Consensus regions mapped to closest gene TSS according to HOMER (Distance to TSS) within proximal TSS up and downstream distances (
TSS_regions.bed
,TSS_counts.csv
,TSS_annotation.csv
). - Read count quantification of promoter regions based on provided proximal TSS up and downstream distances (
promoter_regions.bed
,promoter_counts.csv
,promoter_annotation.csv
).- Pseudoautosomal regions in human chromosome
Y
are skipped.
- Pseudoautosomal regions in human chromosome
- Aggregation of all sample-wise HOMER known motif enrichment results into one CSV in long-format (
HOMER_knownMotifs.csv
).
- Consensus region set generation across all called peaks (
- Annotation (
counts/
)- Sample annotation file based on MultiQC general stats and provided annotations for downstream analysis (
sample_annotation.csv
). - Consensus region set annotation using (
consensus_annotation.csv
)- UROPA with regulatory build and gencode as references, configurable here:
workflow/resources/UROPA/*.txt
. - HOMER with
annotatePeaks.pl
- bedtools for nucleotide counts/content (e.g., % of GC)
- UROPA with regulatory build and gencode as references, configurable here:
- Sample annotation file based on MultiQC general stats and provided annotations for downstream analysis (
Important
Duplciate reads can be filtered during the alignment step by samtools
and/or ignored during peak calling by MACS2
.
The inclusion of duplicates should be intentional, and may lead to a large number of consensus regions.
The removal of duplicates should be intentional, might remove real biological signal.
The decision depends on your downstream analysis steps e.g., rigorous filtering (e.g., using edgeR::filterByExpr
) and/or accounting for PCR bias by normalization conditional on genomic region length and GC content (e.g., CQN) and goals (e.g., differential accessibility analysis).
We recommend reading this ChIP-seq tutorial's section on "Removing redundancy".
These steps are the recommended usage for this workflow:
- Configure the workflow by pointing to the relevant resources, e.g., downloaded from Zenodo for hg38 or mm10 (see instructions below).
- Perform only the processing, by setting the pass_qc annotation for all samples to 0.
- Use the generated MultiQC report (result_path/ataceq_pipeline/report/multiqc_report.html) to judge the quality of each sample (see tips in the next section on Quality Control).
- Fill out the mandatory quality control column (pass_qc) in the annotation file accordingly (everything >0 will be included in the downstream steps).
- Finally, execute the remaining downstream quantification and annotation steps by running the workflow. Thereby only the samples that passed quality control will be included in the consensus region set generation (i.e., the feature space) and all downstream steps.
This workflow is written with Snakemake and its usage is described in the Snakemake Workflow Catalog.
Detailed specifications can be found here ./config/README.md
We provide data, annotation and configuration files for two example datasets (hg38 & mm10) in ./test. In both cases the data was generated for test purposes only by downsampling real ATAC-seq samples using samtools.
samtools view -s .0001 real_sample.bam -b > test_sample.bam
The pass_qc attribute is set 0 for all samples, because the downsampled data does not contain any peaks for downstream quantification.
Below are some guidelines for the manual quality control of each sample, but keep in mind that every experiment/dataset is different.
- Reads Mapped ~
$30\cdot 10^{6}$ ($>20\cdot 10^{6}$ at least) - % Aligned >90%
- % Mitochondrial <10%
- Peaks (depend on reads)
- FriP (Fraction of reads in Peaks) ~ >20% (can be misleading as 80-90% are also not good)
- Regulatory regions >10% (as it is roughly 10% of the genome)
- TSS (Transcription Start Site) normalized coverage ideally > 4 (at least >2)
- % Duplications “not excessive”
- Inspect Genome Browser Tracks using UCSC Genome Browser (online) or IGV (local)
- Compare all samples to the best, based on above's QC metrics.
- Check cell type / experiment-specific markers or sex chromosome (
X
/Y
) for accessibility as positive controls. - Check e.g., developmental regions for accessibility as negative controls.
-
Unsupervised Analysis (e.g., PCA or UMAP)
- Identify outliers/drivers of variation, especially in the control samples and within replicates.
Important
Sometimes reads map to Y
in females, because X
and Y
chromosomes both have pseudoautosomal regions (PARs) that are common between the two chromosomes.
My personal QC value scheme to inform downstream analyses (e.g., unsupervised analysis)
- 0 = did not pass
- 2 options
- for every metric that is not ok subtract 0.25 from 1, which means it requires 4 “strikes” for a sample to be removed due to low quality.
- alternative
- 0.5 = passed with reservations (e.g., metrics and genome browser tracks were not optimal, but still good enough)
- 0.75 = not ideal (e.g., at least metrics or IGV tracks were not optimal)
- 1 = passed (perfect)
Finally, a previous PhD student in our lab, André Rendeiro, wrote about "ATAC-seq sample quality, wet lab troubleshooting and advice".
- Data Resources: To ensure the reproducibility of results and to make the workflow accessible we provide all required reference data for the analysis of ATAC-seq samples for human GRCh38 (hg38) and mouse GRCm38 (mm10) genomes on Zendodo.
# download Zenodo records using zenodo_get # install zenodo_get v1.3.4 conda install -c conda-forge zenodo_get=1.3.4 # human GRCh38 (hg38) zenodo_get --record 6344173 --output-dir=resources/atacseq_pipeline/hg38/ cd resources/atacseq_pipeline/hg38 unzip indices_for_Bowtie2.zip && rm indices_for_Bowtie2.zip # mouse GRCm38 (mm10) zenodo_get --record 6344322 --output-dir=resources/atacseq_pipeline/mm10/ cd resources/atacseq_pipeline/mm10 unzip indices_for_Bowtie2.zip && rm indices_for_Bowtie2.zip
- Recommended compatible MrBiomics modules for downstream analysis (in that order):
- Genome Browser Track Visualization for quality control and visual inspection/analysis of genomic regions/genes of interest or top hits.
- Split, Filter, Normalize and Integrate Sequencing Data after count quantification.
- Unsupervised Analysis to understand and visualize similarities and variations between cells/samples, including dimensionality reduction and cluster analysis. Useful for all tabular data including single-cell and bulk sequencing data.
- Differential Analysis with limma to identify and visualize statistically significantly different features (e.g., genes or genomic regions) between sample groups.
- Enrichment Analysis for biomedical interpretation of (differential) analysis results using prior knowledge.
- Introduction to ChIP-seq using high performance computing
The following publications successfully used this module for their analyses.