--- title: "JASPAR2024" output: BiocStyle::html_document author: name: Damir Baranasic affiliation: Imperial College London, Faculty of Medicine, Institute of Clinical Sciences, Hammersmith Campus, Du Cane Road, W12 0NN, London bibliography: JASPAR2024.bib vignette: > %\VignetteIndexEntry{JASPAR2022} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` # Retrieveing data from JASPAR JASPAR (https://testjaspar.uio.no/) is a widely-used open-access database presenting manually curated high-quality and non-redundant DNA-binding profiles for transcription factors (TFs) across taxa. In this 10th release and 20th-anniversary update, the CORE collection has expanded with 329 new profiles. We updated three existing profiles and provided orthogonal support for 72 profiles from the previous release’s UNVALIDATED collection. Altogether, the JASPAR 2024 update provides a 20% increase in CORE profiles from the previous release. A trimming algorithm enhanced profiles by removing low information content flanking base pairs, which were likely uninformative (within the capacity of the PFM models) for TFBS predictions and modelling TF-DNA interactions. This release includes enhanced metadata, featuring a refined classification for plant TFs’ structural DNA-binding domains. The new JASPAR collections prompt updates to the genomic tracks of predicted TF-binding sites in 8 organisms, with human and mouse tracks available as native tracks in the UCSC Genome browser. All data are available through the JASPAR web interface and programmatically through its API and the updated Bioconductor and pyJASPAR packages. Finally, a new TFBS extraction tool enables users to retrieve predicted JASPAR TFBSs intersecting their genomic regions of interest. You can easily access data in JASPAR using the RSQLite package as shown: ```{r setup} library(JASPAR2024) library(RSQLite) JASPAR2024 <- JASPAR2024() JASPARConnect <- RSQLite::dbConnect(RSQLite::SQLite(), db(JASPAR2024)) RSQLite::dbGetQuery(JASPARConnect, 'SELECT * FROM MATRIX LIMIT 5') dbDisconnect(JASPARConnect) ``` # Session Info Here is the output of `sessionInfo()` on the system on which this document was compiled: ```{r session_info, echo=FALSE} sessionInfo() ``` # Bibliography