Skip to main content

TF-MInDi: Transcription Factor Motifs and Instances Discovery

Project description

TF-MInDi: Transcription Factor Motifs and Instances Discovery

Tests Documentation

TF-MInDi is a Python package for analyzing transcription factor binding patterns from deep learning model attribution scores. It identifies and clusters sequence motifs from contribution scores, maps them to DNA-binding domains, and provides comprehensive visualization tools for regulatory genomics analysis.

Getting Started

Please refer to the documentation for detailed tutorials and examples, in particular, the API documentation and Tutorials

Key Features

  • Seqlet Extraction: Identifies important sequence regions from contribution scores using recursive seqlet calling from tangermeme
  • Motif Similarity Analysis: Compares extracted seqlets to known motif databases using TomTom
  • Clustering & Dimensionality Reduction: Groups similar seqlets using Leiden clustering and t-SNE visualization
  • DNA-Binding Domain Annotation: Maps seqlet clusters to transcription factor families
  • Pattern Generation: Creates consensus motifs from clustered seqlets with alignment
  • Comprehensive Visualization: Region-level contribution plots, t-SNE embeddings, motif logos, and heatmaps

Installation

tfmindi is compatible with python version 3.10-3.12.

CPU Version (Default)

pip install tfmindi

GPU-Accelerated Version (Recommended for large datasets)

# Requires CUDA-compatible GPU (CUDA 12.X)
pip install tfmindi[gpu]

The GPU version provides significant speedups for:

  • PCA computation
  • Neighborhood graph construction
  • t-SNE embedding
  • Leiden clustering

We're still working on making the tfmindi package as GPU-compatible as possible. If tfmindi can't find the GPU, try importing rapids_singlecell directly in python and see what errors you get. You might have to explicitly set your LD_LIBRARY_PATH for cuml as described here.

Quick Start

TF-MInDi follows a scanpy-inspired workflow:

  1. Preprocessing (tm.pp): Extract seqlets, calculate motif similarities, and create an Anndata object
  2. Tools (tm.tl): Cluster seqlets and create consensus patterns
  3. Plotting (tm.pl): Visualize results
import tfmindi as tm

# Optional: Check GPU availability and set backend
print(f"GPU available: {tm.is_gpu_available()}")
print(f"Current backend: {tm.get_backend()}")
# tm.set_backend('gpu')  # Force GPU backend
# tm.set_backend('cpu')  # Swap back to CPU backend

# Extract seqlets from contribution scores
seqlets_df, seqlet_matrices = tm.pp.extract_seqlets(
    contrib=contrib_scores,  # (n_examples, 4, length)
    oh=one_hot_sequences,    # (n_examples, 4, length)
    threshold=0.05
)

# Calculate motif similarity
motif_collection = tm.load_motif_collection(
    tm.fetch_motif_collection()
)
similarity_matrix = tm.pp.calculate_motif_similarity(
    seqlet_matrices,
    motif_collection,
    chunk_size=10000
)

# Create AnnData object for analysis
adata = tm.pp.create_seqlet_adata(
    similarity_matrix,
    seqlets_df,
    seqlet_matrices=seqlet_matrices,
    oh_sequences=one_hot_sequences,
    contrib_scores=contrib_scores,
    motif_collection=motif_collection
)

# Cluster seqlets and annotate with DNA-binding domains
tm.tl.cluster_seqlets(adata, resolution=3.0)

# Generate consensus logos for each cluster
patterns = tm.tl.create_patterns(adata)

# Visualize results
tm.pl.tsne(adata, color_by="cluster_dbd")
tm.pl.region_contributions(adata, example_idx=0)
tm.pl.dbd_heatmap(adata)

Release Notes

See the changelog.

Contact

If you found a bug, please use the issue tracker.

Citation

t.b.a

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tfmindi-1.1.0.tar.gz (3.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tfmindi-1.1.0-py3-none-any.whl (54.9 kB view details)

Uploaded Python 3

File details

Details for the file tfmindi-1.1.0.tar.gz.

File metadata

  • Download URL: tfmindi-1.1.0.tar.gz
  • Upload date:
  • Size: 3.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tfmindi-1.1.0.tar.gz
Algorithm Hash digest
SHA256 6d5ea6f0908c231767bf9625e14a2d18574286ed05a700185fd36d884e5a3e8d
MD5 3fec88f5b7001565dfaa4a4f03fd34ab
BLAKE2b-256 1ad9378c7780061bb2605f1a50eb657fce1338a43514f97e76c7efcdf6e67c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfmindi-1.1.0.tar.gz:

Publisher: release.yaml on aertslab/TF-MInDi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfmindi-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: tfmindi-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 54.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tfmindi-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 02a9685610f6999d41163d6cb84511f5ad05a7c0e5c4ba85190f28a34041b1db
MD5 7d6657fd91ad489f6caec73d5ff8e5f3
BLAKE2b-256 0c448f79e563b20c18720f23991b7717fb6b2a2b6ad92089a828c717482daffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfmindi-1.1.0-py3-none-any.whl:

Publisher: release.yaml on aertslab/TF-MInDi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page