Workflow: Trim Galore ATAC-Seq pipeline paired-end
The original [BioWardrobe's](https://biowardrobe.com) [PubMed ID:26248465](https://www.ncbi.nlm.nih.gov/pubmed/26248465) **ChIP-Seq** basic analysis workflow for a **paired-end** experiment with Trim Galore. The pipeline was adapted for ATAC-Seq paired-end data analysis by updating genome coverage step. _Trim Galore_ is a wrapper around [Cutadapt](https://github.com/marcelm/cutadapt) and [FastQC](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/) to consistently apply adapter and quality trimming to FastQ files, with extra functionality for RRBS data. A [FASTQ](http://maq.sourceforge.net/fastq.shtml) input file has to be provided. In outputs it returns coordinate sorted BAM file alongside with index BAI file, quality statistics for both the input FASTQ files, reads coverage in a form of BigWig file, peaks calling data in a form of narrowPeak or broadPeak files, islands with the assigned nearest genes and region type, data for average tag density plot (on the base of BAM file). Workflow starts with running fastx_quality_stats (steps fastx_quality_stats_upstream and fastx_quality_stats_downstream) from FASTX-Toolkit to calculate quality statistics for both upstream and downstream input FASTQ files. At the same time Bowtie is used to align reads from input FASTQ files to reference genome (Step bowtie_aligner). The output of this step is unsorted SAM file which is being sorted and indexed by samtools sort and samtools index (Step samtools_sort_index). Depending on workflow’s input parameters indexed and sorted BAM file could be processed by samtools rmdup (Step samtools_rmdup) to remove all possible read duplicates. In a case when removing duplicates is not necessary the step returns original input BAM and BAI files without any processing. If the duplicates were removed the following step (Step samtools_sort_index_after_rmdup) reruns samtools sort and samtools index with BAM and BAI files, if not - the step returns original unchanged input files. Right after that macs2 callpeak performs peak calling (Step macs2_callpeak). On the base of returned outputs the next step (Step macs2_island_count) calculates the number of islands and estimated fragment size. If the last one is less that 80 (hardcoded in a workflow) macs2 callpeak is rerun again with forced fixed fragment size value (Step macs2_callpeak_forced). If at the very beginning it was set in workflow input parameters to force run peak calling with fixed fragment size, this step is skipped and the original peak calling results are saved. In the next step workflow again calculates the number of islands and estimated fragment size (Step macs2_island_count_forced) for the data obtained from macs2_callpeak_forced step. If the last one was skipped the results from macs2_island_count_forced step are equal to the ones obtained from macs2_island_count step. Next step (Step macs2_stat) is used to define which of the islands and estimated fragment size should be used in workflow output: either from macs2_island_count step or from macs2_island_count_forced step. If input trigger of this step is set to True it means that macs2_callpeak_forced step was run and it returned different from macs2_callpeak step results, so macs2_stat step should return [fragments_new, fragments_old, islands_new], if trigger is False the step returns [fragments_old, fragments_old, islands_old], where sufix \"old\" defines results obtained from macs2_island_count step and sufix \"new\" - from macs2_island_count_forced step. The following two steps (Step bamtools_stats and bam_to_bigwig) are used to calculate coverage on the base of input BAM file and save it in BigWig format. For that purpose bamtools stats returns the number of mapped reads number which is then used as scaling factor by bedtools genomecov when it performs coverage calculation and saves it in BED format. The last one is then being sorted and converted to BigWig format by bedGraphToBigWig tool from UCSC utilities. To adapt the pipeline for ATAC-Seq data analysis we calculate genome coverage using only the first 9 bp from every read. Step get_stat is used to return a text file with statistics in a form of [TOTAL, ALIGNED, SUPRESSED, USED] reads count. Step island_intersect assigns genes and regions to the islands obtained from macs2_callpeak_forced. Step average_tag_density is used to calculate data for average tag density plot on the base of BAM file.
- Selected
- |
- Default Values
- Nested Workflows
- Tools
- Inputs/Outputs
Inputs
ID | Type | Title | Doc |
---|---|---|---|
threads | Integer (Optional) | Number of threads |
Number of threads for those steps that support multithreading |
broad_peak | Boolean | Callpeak broad |
Set to call broad peak for MACS2 |
clip_3p_end | Integer (Optional) | Clip from 3p end |
Number of bases to clip from the 3p end |
clip_5p_end | Integer (Optional) | Clip from 5p end |
Number of bases to clip from the 5p end |
genome_size | String | Effective genome size |
MACS2 effective genome size: hs, mm, ce, dm or number, for example 2.7e9 |
chrom_length | File [Textual format] | Chromosomes length file |
Chromosomes length file |
control_file | File (Optional) [BAM] | Use experiment as a control |
Use experiment as a control for MACS2 peak calling |
indices_folder | Directory | Indexed genome folder (bowtie) |
Path to indexed genome folder by **bowtie** |
annotation_file | File [TSV] | Annotation file |
Tab-separated annotation file |
exp_fragment_size | Integer (Optional) | Expected fragment size |
Expected fragment size for MACS2 |
remove_duplicates | Boolean (Optional) | Remove duplicates |
Calls samtools rmdup to remove duplicates from sortesd BAM file |
exclude_chromosome | String (Optional) | Exclude chromosomes |
Space separated list of chromosomes to be excluded |
fastq_file_upstream | File [FASTQ] | FASTQ 1 input file |
Reads data in a FASTQ format, received after paired end sequencing |
force_fragment_size | Boolean (Optional) | Force fragment size |
Force MACS2 to use exp_fragment_size |
fastq_file_downstream | File [FASTQ] | FASTQ 2 input file |
Reads data in a FASTQ format, received after paired end sequencing |
Steps
ID | Runs | Label | Doc |
---|---|---|---|
preseq |
../tools/preseq-lc-extrap.cwl
(CommandLineTool)
|
Tool runs preseq lc_extrap. Only BAM input file is supported (-B option is used by default) successCodes: [1] - is used to pass this tool as a step in a workflow in case the BAM file was not correct for Preseq Discarded arguments: -V, -vals input is a text file containing only the observed counts -H, -hist input is a text file containing the observed histogram |
|
get_stat |
../tools/collect-statistics-chip-seq-trim.cwl
(CommandLineTool)
|
Tool processes and combines log files generated by Trimgalore, Bowtie, Samtools and MACS2. |
|
filter_bam |
../tools/samtools-filter.cwl
(CommandLineTool)
|
Excludes chromosomes from the input BAM file. Filters reads by quality. If there is only one chromosome present, you cannot exclude it |
|
trim_fastq |
../tools/trimgalore.cwl
(CommandLineTool)
|
Tool runs Trimgalore - the wrapper around Cutadapt and FastQC to consistently apply adapter and quality trimming
to FastQ files. |
|
bam_to_bigwig |
../tools/bam-bedgraph-bigwig.cwl
(Workflow)
|
Workflow converts input BAM file into bigWig and bedGraph files. |
|
bowtie_aligner |
../tools/bowtie-alignreads.cwl
(CommandLineTool)
|
Tool maps input raw reads files to reference genome using Bowtie. |
|
macs2_callpeak |
../tools/macs2-callpeak-biowardrobe-only.cwl
(CommandLineTool)
|
Tool runs peak calling using MACS2 within the custom script `run.py` |
|
samtools_rmdup |
../tools/samtools-rmdup.cwl
(CommandLineTool)
|
Tool to remove duplicates from coordinate sorted BAM file set as input `bam_file`.
If input `trigger` is set to `true` or isn't set at all (`true` is used by default), run `samtools rmdup`, return
newly generated BAM file without duplicates and log as outputs `rmdup_output` and `rmdup_log`.
If input `trigger` is set to `false`, return unchanged BAM and index files (if provided in secondaryFiles),
previously staged into output directory, and log. |
|
rename_upstream |
../tools/rename.cwl
(CommandLineTool)
|
Tool renames `source_file` to `target_filename`. Input `target_filename` should be set as string. If it's a full path, only basename will be used. If BAI file is present, it will be renamed too |
|
island_intersect |
../tools/iaintersect.cwl
(CommandLineTool)
|
Tool assigns each peak obtained from MACS2 to a gene and region (upstream, promoter, exon, intron, intergenic) |
|
rename_downstream |
../tools/rename.cwl
(CommandLineTool)
|
Tool renames `source_file` to `target_filename`. Input `target_filename` should be set as string. If it's a full path, only basename will be used. If BAI file is present, it will be renamed too |
|
get_bam_statistics |
../tools/samtools-stats.cwl
(CommandLineTool)
|
Generates statistics for the input BAM file. Output if filtered with grep SN | cut -f 2- |
|
average_tag_density |
../tools/atdp.cwl
(CommandLineTool)
|
Tool calculates average tag density profile around all annotated TSS. |
|
samtools_sort_index |
../tools/samtools-sort-index.cwl
(CommandLineTool)
|
Tool to sort and index input BAM/SAM/CRAM.
If input `trigger` is set to `true` or isn't set at all (`true` is used by default), run `samtools sort` and
`samtools index`, return sorted BAM and BAI/CSI index file.
If input `trigger` is set to `false`, return unchanged `sort_input` (BAM/SAM/CRAM) and index (BAI/CSI, if provided in
`secondaryFiles`) files, previously staged into output directory. |
|
extract_fastq_upstream |
../tools/extract-fastq.cwl
(CommandLineTool)
|
Tool to decompress input FASTQ file Bash script's logic: - disable case sensitive glob check - check if root name of input file already include '.fastq' or '.fq' extension. If yes, set DEFAULT_EXT to \"\" - check file type, decompress if needed - return 1, if file type is not recognized This script also works of input file doesn't have any extension at all |
|
extract_fastq_downstream |
../tools/extract-fastq.cwl
(CommandLineTool)
|
Tool to decompress input FASTQ file Bash script's logic: - disable case sensitive glob check - check if root name of input file already include '.fastq' or '.fq' extension. If yes, set DEFAULT_EXT to \"\" - check file type, decompress if needed - return 1, if file type is not recognized This script also works of input file doesn't have any extension at all |
|
fastx_quality_stats_upstream |
../tools/fastx-quality-stats.cwl
(CommandLineTool)
|
Tool calculates statistics on the base of FASTQ file quality scores. If `output_filename` is not provided call function `default_output_filename` to return default output file name generated as `input_file` basename + `.fastxstat` extension. |
|
fastx_quality_stats_downstream |
../tools/fastx-quality-stats.cwl
(CommandLineTool)
|
Tool calculates statistics on the base of FASTQ file quality scores. If `output_filename` is not provided call function `default_output_filename` to return default output file name generated as `input_file` basename + `.fastxstat` extension. |
|
samtools_sort_index_after_rmdup |
../tools/samtools-sort-index.cwl
(CommandLineTool)
|
Tool to sort and index input BAM/SAM/CRAM.
If input `trigger` is set to `true` or isn't set at all (`true` is used by default), run `samtools sort` and
`samtools index`, return sorted BAM and BAI/CSI index file.
If input `trigger` is set to `false`, return unchanged `sort_input` (BAM/SAM/CRAM) and index (BAI/CSI, if provided in
`secondaryFiles`) files, previously staged into output directory. |
|
get_bam_statistics_after_filtering |
../tools/samtools-stats.cwl
(CommandLineTool)
|
Generates statistics for the input BAM file. Output if filtered with grep SN | cut -f 2- |
Outputs
ID | Type | Label | Doc |
---|---|---|---|
bigwig | File [bigWig] | BigWig file |
Generated BigWig file |
atdp_log | File [TSV] | ATDP log |
Average Tag Density generated log |
macs2_log | File (Optional) [Textual format] | MACS2 log |
MACS2 output log |
bowtie_log | File [Textual format] | BOWTIE alignment log |
BOWTIE generated alignment log |
atdp_result | File [TSV] | ATDP results |
Average Tag Density generated results |
bambai_pair | File [BAM] | Coordinate sorted BAM alignment file (+index BAI) |
Coordinate sorted BAM file and BAI index file |
get_stat_log | File (Optional) [YAML] | YAML formatted combined log |
YAML formatted combined log |
macs2_moder_r | File (Optional) [Textual format] | MACS2 generated R script |
R script to produce a PDF image about the model based on your data |
iaintersect_log | File [TSV] | Island intersect log |
Iaintersect generated log |
preseq_estimates | File (Optional) [TSV] | Preseq estimates |
Preseq estimated results |
get_stat_markdown | File (Optional) [TIDE TXT] | Markdown formatted combined log |
Markdown formatted combined log |
macs2_broad_peaks | File (Optional) [ENCODE broad peak format] | Broad peaks |
Contains the peak locations together with peak summit, pvalue and qvalue |
macs2_gapped_peak | File (Optional) [bed12] | Gapped peaks |
Contains both the broad region and narrow peaks |
iaintersect_result | File [TSV] | Island intersect results |
Iaintersect generated results |
macs2_called_peaks | File (Optional) [xls] | Called peaks |
XLS file to include information about called peaks |
macs2_narrow_peaks | File (Optional) [ENCODE narrow peak format] | Narrow peaks |
Contains the peak locations together with peak summit, pvalue and qvalue |
macs2_peak_summits | File (Optional) [BED] | Peak summits |
Contains the peak summits locations for every peaks |
samtools_rmdup_log | File [Textual format] | Remove duplicates log |
Samtools rmdup generated log |
macs2_fragment_stat | File (Optional) [Textual format] | FRAGMENT, FRAGMENTE, ISLANDS |
fragment, calculated fragment, islands count from MACS2 results |
trim_report_upstream | File | TrimGalore report FASTQ 1 |
TrimGalore generated log for FASTQ 1 |
bam_statistics_report | File [Textual format] | BAM statistics report (original) |
BAM statistics report (right after alignment and sorting) |
get_stat_formatted_log | File (Optional) [TSV] | Bowtie & Samtools Rmdup combined formatted log |
Processed and combined Bowtie aligner and Samtools rmdup formatted log |
trim_report_downstream | File | TrimGalore report FASTQ 2 |
TrimGalore generated log for FASTQ 2 |
fastx_statistics_upstream | File [Textual format] | FASTQ 1 statistics |
fastx_quality_stats generated FASTQ 1 quality statistics file |
fastx_statistics_downstream | File [Textual format] | FASTQ 2 statistics |
fastx_quality_stats generated FASTQ 2 quality statistics file |
bam_statistics_report_after_filtering | File [Textual format] | BAM statistics report (after filtering) |
BAM statistics report (after all filters applied) |
https://w3id.org/cwl/view/git/91bb63948c0a264334b9007ef85f936768d90d11/workflows/trim-atacseq-pe.cwl