Chromatin accessibility and protein binding assays reveal which parts of the genome are active and which regulatory factors are engaged at a given locus. AlphaGenomeR exposes four modalities in this category — ATAC-seq, DNase-seq, ChIP-seq for transcription factors, and ChIP-seq for histone marks — all requestable in a singleDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/BDB-Genomics/AlphaGenomeR/llms.txt
Use this file to discover all available pages before exploring further.
alphagenome_query() call.
ATAC-seq chromatin accessibility
ATAC-seq (Assay for Transposase-Accessible Chromatin) identifies regions of open chromatin where regulatory factors can bind. Predicted ATAC signal provides a genome-wide view of chromatin accessibility at base-pair resolution across the queried interval. Requested output token:"ATAC"Extractor function:
alphagenome_get_atac(response_body)Returns:
list($values, $metadata) — a positions × tracks numeric matrix and a track annotation data frame.
DNase-seq hypersensitivity
DNase-seq measures DNase I hypersensitive sites (DHSs) — regions of open chromatin that are especially sensitive to nuclease cleavage. DHSs mark active regulatory elements including promoters, enhancers, and insulators. Requested output token:"DNASE"Extractor function:
alphagenome_get_dnase(response_body)Returns:
list($values, $metadata) — a positions × tracks numeric matrix of DNase hypersensitivity signal.
ChIP-seq transcription factor binding
ChIP-seq for transcription factors (TFs) identifies genomic locations where specific TFs are bound. Predicted ChIP-TF signal spans all TFs in the model’s training corpus, with each track corresponding to a TF–cell type combination annotated in$metadata.
Requested output token: "CHIP_TF"Extractor function:
alphagenome_get_chip_tf(response_body)Returns:
list($values, $metadata) — a positions × tracks numeric matrix of TF binding signal.
ChIP-seq histone marks
Histone modification ChIP-seq captures the epigenetic state of chromatin. Different marks denote distinct regulatory states: H3K27ac marks active enhancers, H3K4me3 marks active promoters, H3K27me3 marks Polycomb-repressed regions, and so on. Requested output token:"CHIP_HISTONE"Extractor function:
alphagenome_get_chip_histone(response_body)Returns:
list($values, $metadata) — a positions × tracks numeric matrix of histone mark signal.
Combined accessibility query
Request all four accessibility modalities together for a comprehensive regulatory landscape of your locus.Extractors return
NULL for any modality not included in requested_outputs. Guard against this when writing reusable analysis functions:Related pages
- Gene expression — RNA-seq, CAGE, and PRO-cap predictions
- Splicing — splice site, junction, and usage predictions
- Modalities overview — all 11 supported modalities at a glance