ASPEN 1.2.0¶
- Add
hs1_chrRas a supported reference genome (T2T-CHM13 + chrR rDNA unit from Paralkar lab). (#117, @kopardev) - Fix
ZeroDivisionErrorin_ccbr_counts2density.pywhen TSS flanking bins have zero reads (e.g. genes onchrR); emit 0.0 enrichment instead of crashing. (#122, @kopardev) - Fix
object 'tdb' not foundcrash inccbr_annotate_bed.Randccbr_annotate_peaks.Rforhs1/hs1_chrRgenomes by adding T2T-CHM13v2.0 TxDb dispatch (pre-built SQLite shipped innciccbr/ccbr_atacseq:v13-feat). (#123, @kopardev) - Bump
masterdockercontainer tonciccbr/ccbr_atacseq:v13-feat. (#123, @kopardev) - Fix
_ThreadedGzipWritercutadapt crash intrimrule by pinningtrimtonciccbr/ccbr_atacseq:v11-feat(cutadaptdocker); all other rules usev13-feat(masterdocker). (#124, @kopardev) - Fix
Error in library("org.Bt.eg.db")crash by loading bosTau9/mmul10 Bioconductor packages on-demand instead of unconditionally at script top (ccbr_annotate_bed.R,ccbr_annotate_peaks.R);org.Bt.eg.dbandorg.Mmu.eg.dbare absent fromv13-feat. (#124, @kopardev) - Fix
there is no package called 'tidyverse'crash in fixed-width peak-calling scripts by replacinglibrary("tidyverse")withlibrary("dplyr")infixed_width_peakSets_to_consensus_peakSet.R,narrowPeak_normalize_pvalues.R, andnarrowPeak_to_fixed_width_peakSet.R; onlydplyrfunctions are used andtidyverseis absent fromv13-feat. (#124, @kopardev) - Fix
undefined columns selectedcrash inccbr_annotate_bed.Randccbr_annotate_peaks.Rwhen ChIPseeker cannot map T2T TxDb gene IDs throughorg.Hs.eg.db;ENSEMBL,SYMBOL, andGENENAMEcolumns are now filled withNAwhen absent. (#123, @kopardev) - Fix
mv: cannot stat '*.annotated': No such file or directorycrash inccbr_atac_genrich_peak_calling.bashandccbr_atac_macs2_peak_calling.bashforhs1/hs1_chrRby adding both genomes to thegenome_is_knowncheck so ChIPseeker annotation runs for T2T assemblies. (#117, @kopardev) - Remove orphan scripts with no pipeline references:
picardcloud.jar(Picard is called via in-container path/opt2/picardcloud.jar),ccbr_atac_trim_align_pe.bash(superseded by separatetrim+alignrules),ccbr_bam_filter_by_mapq.py,atac_assign_multimappers.py, andscript1.py. (@kopardev) - Restore
ccbr_bam_filter_by_mapq.pybecause it is used byccbr_bowtie2_align_pe.bashin thealignworkflow step. (@kopardev) - Reduce
trimrule RAM from 120 g to 48 g and increase walltime from 12 h to 16 h. (#112, @kopardev) - Increase walltime for
align,align2spikein, andatac_tssrules from 12 h to 24 h. (#114, @kopardev) - Clarify
replicateNameas a biological replicate identifier in docs; add warning explaining biological vs technical replicates with lane-merging example. (#110, @kopardev) - Document how per-sample consensus and ROI-level consensus peaks are generated, including config knobs (
consensus_min_replicates,consensus_min_spm,fixed_width). (#84, @kopardev) - Fix missing FRIP values in
FRiP_stats.tsvcaused by wrongcutcolumn indices in_qc_create_frip_stats_table.bash;cut -f2,3extracted metric labels instead of peakcaller+value — corrected tocut -f3,4. (#103, @kopardev) - Fix DiffATAC silently skipping for all genomes except
hg38andmm10; replace hard-coded genome guard withDIFFATAC_SUPPORTED_GENOMESset covering all annotation-supported genomes (hg19,hg38,mm10,mmul10,bosTau9,hs1,hs1_chrR). (#128, @kopardev) - Write DESeq2 size-factor-normalized counts matrix (
{contrast}.normalized_counts.tsv) to the DiffATAC output directory alongside each per-contrast differential results TSV. (#68, @kopardev) - Fix
DESeq2.Rmdstartup failure on systems withouttidyverseby removing the unnecessarylibrary("tidyverse")dependency; script now uses explicitly loaded packages (dplyr,ggplot2, etc.). (#128, @kopardev)
ASPEN 1.1.2¶
- Fix broken data path for biowulf. (#104, @kelly-sovacool)
- Remove deprecated
ccrpartition. (#106, @kelly-sovacool)
ASPEN 1.1.1¶
- Fix Diffatac error (#101, @kopardev)
- Adds a defensive check to prevent invalid 'row.names' length error when up_roi or down_roi are empty (due to strict FC/FDR thresholds in DiffATAC)
- Minor refactoring to accommodate moving to ccbr_tools >= v0.4 (#101, @kopardev)
ASPEN 1.1.0¶
This version features a major overhaul of the pipeline with changes in the following areas:
Spike-in alignment (#94, @kopardev)¶
- Added support for spike-in alignment and scaling factor computation. (#94, @kopardev)
- This new feature is controlled by two new parameters in the config file:
spikeinandspikein_genome. (#69)
Peak-calling (#94, @kopardev)¶
- Peak-called narrowPeak files are now q-value filtered by default, with a default q-value threshold of 0.1. Unfiltered files are still available for users who want to apply their own filters. (#90)
- Streamlined the output directory structure.
- Added the name of the peak-caller to ROI filenames (#86)
- Added missing annotations (#79)
Differential accessibility (#94, @kopardev)¶
- Add new rules for scaling counts and annotating regions of interest. (#68)
- DiffATAC analysis is now run for both MACS2 and Genrich peak calls, with results stored in separate directories.
- DiffATAC analysis now includes spike-in scaling factors when
spikeinisTRUE. - Removed redundant steps in the differential accessibility analysis to streamline the process.
- create Tn5-based and reads-based counts matrices (#67)
- create spike-in scaled counts matrices (#62)
- Quality control
- Updated FRiP calculation to use
tagAlign.gzfiles instead of deduplicated BAM files. - Removed unnecessary QC metrics and simplified the QC workflow.
- Updated TSS enrichment and fragment length distribution rules to align with the simplified pipeline structure.
Output directory (#94, @kopardev)¶
- Consolidated peak calling outputs into a single directory for each peak caller. (#91)
- Simplified the output directory structure. (#92)
- Decreased output digital footprint by removing unwanted intermediate files, gzipping annotated files, etc. (#87)
- Improved slurm job logging with jobby (now depends on ccbr_tools v0.4). (#98, @kelly-sovacool)
Documentation (#94, @kopardev)¶
- Simplified the documentation to focus on the core functionalities of the pipeline, as well as reflect all of the changes in this version.
ASPEN 1.0.6¶
- fix: dockername typo (#57, @kopardev)
- docs: update documentation, change theme (#77, #78, @kopardev)
ASPEN 1.0.5¶
- fix: ucsc tool version changed requiring newer version of GLIBC (#54, @kopardev)
- using new masterdocker v11
ASPEN 1.0.4¶
- fix: DiffATAC failure (#46, @kopardev)
- fix: last line of
contrasts.tsvread in correctly; black lines ignored (#48, @kopardev) - fix: ROI calculation from fixed-width consensus peaks no longer tried to fix the peak width again (#50, @kopardev)
- feature: create diffatac results from MACS2 peaks (#51, @kopardev)
- fix:
BUYINPARTITIONSfixed in wrapper for BIOWULF-only (#52, @kopardev)
ASPEN 1.0.3¶
- fix: No module named 'numpy._core._multiarray_umath' error with
unset PYTHONPATH(#43, @kopardev) - fix: jobby command points to the correct location of snakemake.log file
- ASPEN is now archived on Zenodo, you can cite it with the DOI 10.5281/zenodo.13755867. (#42, @kelly-sovacool)
ASPEN 1.0.2¶
- Set the singularity cache dir if
--singcacheis not provided. (#37, @kelly-sovacool) - ASPEN now has a documentation website: https://ccbr.github.io/ASPEN
ASPEN 1.0.1¶
- differential ATAC updated
- documentation updated
ASPEN 1.0.0¶
- completely dockerized
- differential ATAC
ASPEN 0.6.1¶
- correction to fqscreen cattle path
ASPEN 0.6¶
- support for mmul10 (Macaca) and bosTau9 (cattle) genomes
- created resource files: indexes, promoter files, tss files etc.
- Added Macaca and Cattle to fastqscreen indexes
- support increased from 4 replicate to 6 replicates
- macs and genrich fixed width peaks generation rule added
- docker updated to v10 (genome support and tidyverse added)
ASPEN 0.5.3¶
- Includes reference files for mmul10
ASPEN 0.5.2¶
- atac_assign_multimappers.py now getting query sorted input
- dryrun log saved in workdir
- local (workdir) scriptsdir used
ASPEN 0.5.1¶
- typo fix in main wrapper script
ASPEN 0.5¶
- fastqscreen added
- minor bug fixes
ASPEN 0.4.1¶
- Bug fixes
- minor updates
ASPEN 0.4¶
- Multiqc edits
- README updates
ASPEN 0.3¶
- FRiP calculations added
ASPEN 0.2¶
- Peak motif enrichment with homer/meme
- Peak replicate/sample/peakcaller PCA comparisons after bedtools jaccard pairwise calculations
ASPEN 0.1¶
- first working version
- calls peaks with macs2/genrich
- annotates peaks with chipseeker (human and mouse support)