Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Deacon
Deacon filters DNA sequences in FASTA/Q files and streams using accelerated minimizer comparison with query sequence(s), emitting either matching sequences (search mode), or sequences without matches (deplete mode). Sequences match when they share enough distinct minimizers with the indexed query to exceed chosen absolute and relative thresholds. Query size has little impact on filtering speed, enabling ultrafast search and depletion with gene-, genome- and pangenome-scale queries using a laptop. Deacon filters uncompressed FASTA/Q at gigabases per second on recent AMD, Intel (x86_64), and Apple arm64 systems. Built with panhuman host depletion in mind—yet broadly useful for searching large sequence collections—Deacon delivers leading classification accuracy for host depletion and unrivalled speed using 5GB of RAM.
Default parameters are carefully chosen but easily changed. Classification sensitivity, specificity and memory requirements may be tuned by varying k-mer length (-k), window size (-w), absolute match threshold (-a) and relative match threshold (-r) . Minimizer k and w are chosen at query index time, while the match thresholds can be chosen at filter time. Matching sequences are those that share enough distinct minimizers with the indexed query to exceed both the absolute threshold (-a, default 2 shared minimizers) and the relative threshold (-r, default 0.01 [1%] shared minimizers). Paired sequences are fully supported: a match in either mate causes both mates in the pair to be matched; deacon filter retains matches by default (search mode) and discards matches in --deplete mode. Deacon reports live filtering performance during execution and optionally writes a JSON --summary upon completion. Sequences can optionally be renamed using --rename for privacy and smaller file sizes. Gzip, zst and xz compression formats are natively supported and detected by file extension. Other source formats can be converted to FASTA or FASTQ for consumption by Deacon via stdin.
Benchmarks for panhuman host depletion of complex microbial metagenomes are described in a preprint. Deacon with the panhuman-1 (k=31, w=15) index exhibited the highest balanced accuracy for both long and short simulated reads. Deacon was less specific only than Hostile for short reads.
Use cases
- Depletion of human or other host genome sequences in FASTQ reads or streams.
- Quickly searching for genes, genomes or pangenomes in terabase genome catalogues like AllTheBacteria without tedious pre-indexing.
Install
Conda/mamba/pixi 
Cargo 
RUSTFLAGS="-C target-cpu=native"
[!IMPORTANT] Cargo installation requires Rust 1.88 or newer. Update using
rustup update.
Docker 
Quickstart
Ultrafast panhuman host depletion
# Download validated 3GB human pangenome index (0.13.0 or later)
# Deplete long reads
# Deplete short paired reads
Ultrafast gene/genome/pangenome search
N.B. Indexing a 3Gbp human genome takes ~30s using 18GB of RAM. Filtering with this index uses 5GB of RAM.
Prebuilt Indexes
For human or mouse host depletion, prebuilt pangenome indexes are provided.
| Name & URL | Composition | Minimizers | Subtracted minimizers | Size | Date |
|---|---|---|---|---|---|
panhuman-1 (k=31, w=15) Cloud, Zenodo |
HPRC Year 1 ∪ CHM13v2.0 ∪ GRCh38.p14 - bacteria (FDA-ARGOS) - viruses (RefSeq) |
409,907,949 | 20,671 (0.0050%) | 3.3GB | 2025-04 |
panmouse-1 (k=31, w=15, e=0.5) Cloud |
GRCm39 ∪ PRJEB47108 - bacteria (FDA-ARGOS) - viruses (RefSeq) |
548,328,389 | 8,243 (0.0015%) | 4.4GB | 2025-08 |
[!NOTE]
Index compatibility. Deacon
0.11.0and above uses index format version 3. Using version 3 indexes with older Deacon versions and vice versa triggers an error. Prebuilt indexes in legacy formats are archived in object storage and Zenodo to ensure reproducibility. To download indexes in legacy formats, replace the/3/in any prebuilt index download URL with either/2/or/1/accordingly.
- Deacon
0.11.0and above uses index format version3- Deacon
0.7.0through to0.10.0used index format version2- Deacon
0.1.0through to0.6.0used index format version1
Usage
The main command deacon filter accepts an index path followed by up to two FASTA/FASTQ file paths, depending on whether input sequences originate from stdin, a single file, or paired input files. Indexes are built with deacon index build. Paired queries are supported as either separate files or interleaved stdin, and written interleaved to either stdout or file, or else to separate paired output files. For paired reads, distinct minimizer hits originating from either mate are counted. By default, input sequences must meet both an absolute threshold of 2 minimizer hits (-a 2) and a relative threshold of 1% of minimizers (-r 0.01) to pass the filter. Filtering can be inverted for e.g. host depletion using the --deplete (-d) flag. Gzip, Zstandard, and xz compression formats are detected automatically by file extension.
# Keep only sequences matching a collection of genes
# Host depletion using the panhuman-1 index
# High sensitivity host depletion with absolute threshold of 1 and no relative threshold
# High specificity 10% relative match threshold
# Stdin and stdout
|
# Zstandard compression
# Paired reads
|
# Save summary JSON
# Replace read headers with incrementing integers
# Only look for minimizer hits inside the first 1000bp per record
# Debug mode: see sequences with minimizer hits in stderr
Multithreading
[!NOTE]
deacon filteruses 8 threads by default. Using more threads (e.g.--threads 16) can accelerate filtering given sufficient resources, especially with uncompressed sequences whose processing is not rate limited by decompression. Since version0.13.0, Deacon writes gzipped output files (e.g-o out.fastq.gz) in parallel, providing particular practical benefit for gzipped paired reads. If output file(s) ending in.gzare detected, half of--threadsare allocated to to compression and filtering tasks respectively. Compression thread allocation can be overriden with--compression-threads. For best performance avoid gzip compression where possible, and consider using Zstandard (.zst), which has native support in Deacon.
Command line reference
Filtering
<INDEX> Path
)
)
)
)
)
; )
)
)
)
& ; )
Indexing
)
)
)
)
<INPUT> Path )
)
)
)
)
Building custom indexes
Building custom Deacon indexes is fast. Nevertheless, when indexing many large genomes, it may be worthwhile separately indexing and subsequently combining indexes into one succinct index. Combine distinct minimizers from multiple indexes using deacon index union. Similarly, use deacon index diff to subtract the minimizers contained in one index from another. This can be helpful for e.g. eliminating shared minimizers between the target and host genomes when building custom (non-human) indexes for host depletion.
- Use
deacon index union 1.idx 2.idx 3.idx… > 1+2+3.idxto succinctly combine two (or more!) deacon indexes. - Use
deacon index diff 1.idx 2.idx > 1-2.idxto subtract minimizers in 1.idx from 2.idx. Useful for masking out shared minimizer content between e.g. target and host genomes. - From version
0.7.0,deacon index diffalso supports subtracting minimizers from an index using a fastx file or stream, e.g.deacon index diff 1.idx 2.fa.gz > 1-2.idxorzcat *.fa.gz | deacon index diff 1.idx - > 1-2.idx.
Filtering summary statistics
Use -s summary.json to save detailed filtering statistics:
Server mode
From version 0.11.0, it is possible to eliminate index loading overhead at the start of each filter operation by preloading the index in the memory of a local server process. Subsequent filtering commands with --use-server are executed by the server process using a UNIX socket. Having started a server process, the index of the first filtering command it receives persists in memory for the life of that server process, enabling subsequent filter commands to be served rapidly without hash set construction overhead.
# Start the server
# The first filter command loads the index as usual
# Subsequent filter commands use the existing index stored in memory
# Stop the server
Citation
Bede Constantinides, John Lees, Derrick W Crook. "Deacon: fast sequence filtering and contaminant depletion" bioRxiv 2025.06.09.658732, https://doi.org/10.1101/2025.06.09.658732
Please also consider citing the SimdMinimizers paper:
Ragnar Groot Koerkamp, Igor Martayan. "SimdMinimizers: Computing random minimizers, fast" bioRxiv 2025.01.27.634998, https://doi.org/10.1101/2025.01.27.634998