Standalone footprint tools with vendored Cython internals
Project description
fp-tools
fp-tools is a Python package for ATAC-seq footprint analysis. It helps users turn ATAC-seq data into bias-corrected cut-site tracks, footprint scores, motif-centered comparisons, aggregate plots, and static HTML reports.
Documentation: https://oncologylab.github.io/fp-tools/
Install
pip install fp-tools-bio
To use the browser interface:
pip install "fp-tools-bio[gui]"
fp-tools-gui
The GUI opens in a browser and writes the same YAML configs that can be run from the command line.
What You Can Do
- Correct ATAC-seq cut-site signal for Tn5 sequence bias.
- Call footprint scores from corrected bigWig tracks.
- Scan known motif databases, including bundled JASPAR 2026 and HOCOMOCO files.
- Compare footprint scores across conditions or replicates.
- Generate volcano-style differential footprint HTML reports.
- Plot motif-centered aggregate footprints.
- Group single-cell ATAC fragments into pseudobulk cell-type profiles.
- Plot per-cell footprint-signature heatmaps and UMAP reports from single-cell fragments.
Typical Workflow
atac-correct
-> call-footprints
-> match-motifs or motif-discovery
-> diff-footprints
-> plot-aggregate
Use match-motifs to inspect motif sites and bound/unbound calls for one or more footprint tracks. Use motif-discovery when candidate footprint intervals should be searched for de novo motifs. For two or more conditions, use diff-footprints; it can scan the same motif database, compare conditions, and write an interactive HTML report.
Minimal Example
Create a simple sample table:
sample condition bam peaks
A conditionA A.bam A_peaks.bed
B conditionB B.bam B_peaks.bed
For condition comparisons, create a comparison table:
comparison cond1 cond2
conditionA_vs_conditionB conditionA conditionB
atac-correct \
--sample-table project/metadata/samples.tsv \
--genome hg38.fa.gz \
--blacklist hg38.blacklist.bed \
--outdir project
normalize-bigwig \
--sample-table project/metadata/samples.tsv \
--background project/peaks/merged_peaks_filtered.bed \
--outdir project \
--method background-scale \
--stat q95 \
--target median
call-footprints \
--sample-table project/metadata/samples.tsv \
--regions project/peaks/merged_peaks_filtered.bed \
--outdir project
match-motifs \
--sample-table project/metadata/samples.tsv \
--genome hg38.fa.gz \
--peaks project/peaks/merged_peaks_filtered.bed \
--motif-db jaspar2026_vertebrates \
--outdir project
diff-footprints \
--sample-table project/metadata/samples.tsv \
--comparison-table project/metadata/comparisons.tsv \
--genome hg38.fa.gz \
--peaks project/peaks/merged_peaks_filtered.bed \
--motif-db jaspar2026_vertebrates \
--outdir project
With a sample table and --outdir project, fp-tools uses the recommended project layout by default: merged peaks in project/peaks, per-sample outputs in project/samples/<sample>/, differential reports in project/comparisons, and review pages in project/reports. atac-correct writes both the raw merged peak set and a filtered project/peaks/merged_peaks_filtered.bed with mitochondrial chromosomes excluded; downstream project commands use this filtered BED when peak/background regions are omitted or when the project raw merged BED is passed. Custom paths remain available with --layout custom.
After match-motifs, project-mode diff-footprints reuses each sample folder's motif-site and background-score caches instead of rescanning motifs or rereading footprint bigWigs. The first cached comparison may create internal per-motif shard caches for faster reuse; later comparisons with the same sample folders reuse those shards. In project mode, match-motifs uses one shared motif scan across samples by default and then writes standard per-sample folders. Repeated samples with the same condition are treated as biological replicates. Per-motif BED folders are written by default in the background after report-ready outputs; use match-motifs --motif-outputs summary only when you want cache-only output. HTML aggregate profiles in sig and top modes are capped by --plot-aggregate-top-n; increase this value to show more motif profiles.
For a portable multi-condition project script, see
examples/nutrient_stress_project/run_ctrl_vs_10fbs.sh. It documents the
expected raw-data layout, explains how to prepare clean samples.tsv and
comparisons.tsv files from an ATAC_Nutrients_hg38_*.txt table, supports
CHECK_ONLY=1 input validation, and then runs the full project workflow.
Methodological Improvements
fp-tools keeps the interpretable TOBIAS-style center-versus-flank footprint score, but improves the workflow around it. Multi-sample projects can q95-scale corrected cut-site tracks over shared background regions before footprint scoring, reducing sample-level signal shifts without forcing full distributions to match. Footprint scoring and candidate detection use optimized Cython-backed kernels by default, with a legacy kernel available for exact historical comparisons. Known-motif analysis uses one shared motif scan across project samples, writes compact motif-site/background caches, and lets diff-footprints reuse those caches for replicate-aware comparisons and interactive reports instead of rescanning motifs for every contrast.
Pseudobulk Workflow
For single-cell ATAC data, start with pseudobulk-fragments to group fragments by cell annotation. Then run the standard footprint workflow on the grouped pseudobulk samples. After motif-aware comparisons are available, use find-signature-fp to write marker footprint-signature heatmaps and UMAP reports. pseudobulk-footprints is the convenience wrapper that can run grouping, correction, scoring, motif reports, aggregate plots, and optional signature reporting in one command.
pseudobulk-footprints \
--fragments pbmc_fragments.tsv.gz \
--annotations cell_annotations.tsv \
--group-by cell_type \
--genome-sizes hg38.chrom.sizes \
--genome hg38.fa.gz \
--peaks merged_peaks.bed \
--motif-db jaspar2026_vertebrates \
--tf-site-dir marker_motif_sites \
--single-cell-signature-h5ad pbmc_embedding.h5ad \
--outdir project/pseudobulk
To run the signature report as a standalone step:
find-signature-fp \
--annotations cell_annotations.tsv \
--fragments pbmc_fragments.tsv.gz \
--h5ad pbmc_embedding.h5ad \
--tf-site-dir marker_motif_sites \
--all-motif-results project/pseudobulk/pseudobulk_diff_footprints_results.txt \
--all-motif-diff-dir project/pseudobulk/diff_footprints \
--outdir project/pseudobulk/signature_fp
Key outputs include pseudobulk fragments, pseudo-BAMs, corrected bigWigs, footprint-score bigWigs, differential footprint reports, aggregate plots, and single-cell footprint-signature heatmaps/UMAPs.
De Novo Motif Workflow
Use candidate footprints from call-footprints --call-candidates in project mode, or --output-bed/--output-beds in custom mode, to prepare de novo motif discovery. This route writes a reproducible MEME/STREME/DREME script and can compare discovered motifs to a built-in motif database.
motif-discovery \
--candidates project/samples/sample/footprints/sample_candidate_footprints.bed \
--genome hg38.fa.gz \
--flank 75 \
--method streme \
--known-motif-db jaspar2026_vertebrates \
--outdir project/de_novo/sample
Use discovered motifs alone for a de novo-only run, or add them to a standard database run:
diff-footprints \
--signals conditionA_footprints.bw conditionB_footprints.bw \
--sample-names conditionA conditionB \
--genome hg38.fa.gz \
--peaks merged_peaks.bed \
--cond-names conditionA conditionB \
--motif-db jaspar2026_vertebrates \
--motifs project/de_novo/sample/streme/streme.txt \
--outdir project/comparisons/database_plus_de_novo
Main Commands
| Command | Use |
|---|---|
atac-correct |
Bias-correct ATAC-seq cut-site signal. |
call-footprints |
Create footprint score tracks from one or more bigWigs. |
match-motifs |
Scan motifs for one or more footprint tracks. |
diff-footprints |
Compare motif footprints across conditions. |
normalize-bigwig |
Scale bigWigs before aggregate plotting. |
plot-aggregate |
Make aggregate footprint plots as PDF/SVG-style output or HTML. |
review-multi-comparisons |
Review multiple differential-footprint HTML reports in one page. |
plot-motif-aggregate-grid |
Export multi-page motif-by-comparison aggregate PDFs from review reports. |
motif-discovery |
Prepare candidate-centered de novo motif discovery. |
motif-summary |
Summarize motif discovery outputs. |
pseudobulk-fragments |
Group single-cell fragments by annotation. |
find-signature-fp |
Plot per-cell footprint-signature heatmaps and UMAP reports. |
pseudobulk-footprints |
Run the full pseudobulk footprint workflow, including optional signature reporting. |
run-workflow |
Run a saved YAML config. |
fp-tools-gui |
Open the optional browser GUI. |
fp-tools-score-variants |
Optional variant-annotation utility; not part of the standard footprint workflow. |
Check any command with --help:
atac-correct --help
call-footprints --help
match-motifs --help
diff-footprints --help
normalize-bigwig --help
plot-aggregate --help
review-multi-comparisons --help
plot-motif-aggregate-grid --help
run-workflow --help
fp-tools-gui --help
motif-discovery --help
motif-summary --help
fp-tools-score-variants --help
pseudobulk-fragments --help
find-signature-fp --help
pseudobulk-footprints --help
GUI
fp-tools-gui --host 0.0.0.0 --port 8891
Open the printed URL in a browser. If running on a server or cloud VM, make sure the selected port is allowed by the firewall or security group.
More Examples
Example YAML configs are in examples/gui_configs/. They can be loaded in the GUI or run directly with run-workflow:
run-workflow --config examples/gui_configs/call_footprints_single.yml
Static report demos and GUI screenshots are available in the documentation site.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fp_tools_bio-0.1.13.tar.gz.
File metadata
- Download URL: fp_tools_bio-0.1.13.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e1d40033641fef50c2fa5036c7ecab11cb74b62fab354ce195806e80f735778
|
|
| MD5 |
bad0bffcef7be9f899bfc7a9c09fdc9c
|
|
| BLAKE2b-256 |
10d365afe4358427d7b356d83e6f26a04090f9ba15ddac334df85db216a704b5
|
File details
Details for the file fp_tools_bio-0.1.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fp_tools_bio-0.1.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
984f6156d1fe4eeea7bb9c6ccafadd1bfe71db0aeae5a7c24072d5be9675a015
|
|
| MD5 |
9fcb7dbab81d4a6d3e06f04d8d8cc06c
|
|
| BLAKE2b-256 |
f387d803d612792d5bd5fbecbdb156e2627050bb8fa04d80e696e6f1229d29b6
|