lisat is a comprehensive R toolkit
designed for the analysis of longitudinal virus integration site data.
It streamlines the entire workflow of integration site analysis, from
data cleaning and quality control to statistical modeling and rich
visualization. With support for simple input formats, lisat
provides a user-friendly and powerful suite of functions for researchers
investigating viral integration sites, clonal tracking, and gene therapy
safety.
You can install the development version of lisat from
GitHub:
# install.packages("devtools")
devtools::install_github("nishuai/lisat")For full annotation capabilities, ensure the following Bioconductor packages are installed:
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install(c("TxDb.Hsapiens.UCSC.hg38.knownGene", "org.Hs.eg.db"))Here is a basic example showing how to validate your raw data and perform an initial analysis:
library(lisat)
# 1. Prepare your raw integration site data
# (Requires columns: Sample, SCount, Chr, Locus)
head(IS_raw)
# 2. Validate the data structure
check_validity <- validate_IS_raw(IS_raw)
# 3. Annotate Genomic Features
# Requires TxDb.Hsapiens.UCSC.hg38.knownGene and org.Hs.eg.db
IS_annotated <- get_feature(IS_raw)
IS_annotated <- Enhancer_check(IS_annotated)
IS_annotated <- Promotor_check(IS_annotated)
IS_annotated <- Safeharbor_check(IS_annotated)
# 4. Identify Common Integration Sites (CIS)
CIS_top <- CIS(IS_raw = IS_annotated, connect_distance = 50000)
CIS_overlap(CIS_data = CIS_top, IS_raw = IS_annotated)
# 5. Longitudinal Analysis
# Requires a Patient_timepoint metadata dataframe
PMD_data <- pmd_analysis(IS_raw = IS_annotated, Patient_timepoint = Patient_timepoint)
plot_richness_evenness(PMD_data = PMD_data)For a comprehensive guide, please refer to the package vignette:
vignette("lisat-intro", package = "lisat")If you use lisat in your research, please cite our
preprint:
Ni, S. et al. (2025). [LISA: A Comprehensive R Package for Lentiviral Integration Site Analysis in Gene Therapy Safety Assessment] bioRxiv. DOI: 10.64898/2025.12.20.695672
This project is licensed under the MIT License - see the LICENSE.md file for details.