suppressPackageStartupMessages({ library(enhancerHomologSearch) library(BSgenome.Drerio.UCSC.danRer10) library(BSgenome.Hsapiens.UCSC.hg38) library(BSgenome.Mmusculus.UCSC.mm10) library(TxDb.Hsapiens.UCSC.hg38.knownGene) library(org.Hs.eg.db) library(TxDb.Mmusculus.UCSC.mm10.knownGene) library(org.Mm.eg.db) library(utils) library(MotifDb) library(motifmatchr) }) pval <- NULL distance <- NULL knitr::opts_chunk$set(warning=FALSE, message=FALSE)
There is an increasing requirement for the tools to identify of putative mammalian orthologs to enhancers in species other than human and mouse, such as zebrafish, which is lacking whole genome comparison analysis data. Take zebrafish as an example, there are two major methods to identify the orthologs to enhancers in human and mouse,
use the whole genome comparison analysis data and conservation data[@howe2013zebrafish],
use spotted gar genome as bridge genome to search the orthologs[@braasch2016spotted].
Both methods will work well in the coding region. However, there is lacking comparative data in distal regulation region such as enhancers and silencers.
In 2020, Emily S. Wong et. al. provides a new method for identification of putative human orthologs to enhancers of zebrafish[@wong2020deep]. They used the method to interrogate conserved syntenic regions and human and mouse using candidate sponge enhancer sequences. First, they looked for overlap with available functional genomics information. For example, they used mouse ENCODE data to infer enhancer activity based on histone marks in specific tissues. Second, they select the best-aligned region by whole genome alignment from the candidates regions for human and mouse as orthologs. This method provides the possibility to search orthologs for enhancers or silencers even there is not genome comparative data available.
This package is modified from Wong's methods and provide the easy-to-use script for researchers to quick search putative mammalian orthologs to enhancers. The modified algorithm is: The candidate regions were determined by ENCODE histone marks (default is H3K4me1) in specific tissue for human and mouse. The mapping score were calculated by pairwise Transcription Factors Binding Pattern Similarity (TFBPS) between enhancer sequences and candidates by fast motif match[@schep2021package]. The Z-score were calculated from mapping score and then converted to P-value based on two-side test from a normal distribution. The candidates were filtered by p-value and distance from the TSS of target homologs. And then the top candidates from human and mouse were aligned to each other and exported as multiple alignments with given enhancer.
First install enhancerHomologSearch
and other packages required to run the
examples. Please note the example dataset used here is from zebrafish.
To run analysis with dataset from a different species or different assembly,
please install the corresponding Bsgenome and TxDb.
For example, to analyze cattle data aligned to bosTau9,
please install BSgenome.Btaurus.UCSC.bosTau9,
and TxDb.Btaurus.UCSC.bosTau9.refGene.
You can also generate a TxDb object by functions makeTxDbFromGFF from a local
gff file, or makeTxDbFromUCSC, makeTxDbFromBiomart, and makeTxDbFromEnsembl,
from online resources in GenomicFeatures package.
if (!"BiocManager" %in% rownames(installed.packages())) install.packages("BiocManager") library(BiocManager) BiocManager::install(c("enhancerHomologSearch", "BiocParallel", "BSgenome.Drerio.UCSC.danRer10", "BSgenome.Hsapiens.UCSC.hg38", "BSgenome.Mmusculus.UCSC.mm10", "TxDb.Hsapiens.UCSC.hg38.knownGene", "TxDb.Mmusculus.UCSC.mm10.knownGene", "org.Hs.eg.db", "org.Mm.eg.db", "MotifDb", "motifmatchr"))
If you have trouble in install enhancerHomologSearch,
please check your R version first.
The enhancerHomologSearch
package require R >= 4.1.0.
R.version
In this example, we will use an enhancer of lepb
gene in zebrafish.
# load genome sequences library(BSgenome.Drerio.UCSC.danRer10) # define the enhancer genomic coordinates LEN <- GRanges("chr4", IRanges(19050041, 19051709)) # extract the sequences as Biostrings::DNAStringSet object (seqEN <- getSeq(BSgenome.Drerio.UCSC.danRer10, LEN))
By default, the hisone marker is H3K4me1. Users can also define the markers
by markers
parameter in the function getENCODEdata
. To make sure the markers
are tissue specific, we can filter the data by biosample_name
and
biosample_type
parameters.
For additional filters, please refer ?getENCODEdata
.
# load library library(enhancerHomologSearch) library(BSgenome.Hsapiens.UCSC.hg38) library(BSgenome.Mmusculus.UCSC.mm10) # download enhancer candidates for human heart tissue hs <- getENCODEdata(genome=Hsapiens, partialMatch=c(biosample_summary = "heart")) # download enhancer candidates for mouse heart tissue mm <- getENCODEdata(genome=Mmusculus, partialMatch=c(biosample_summary = "heart"))
Previous methods were get alignment score from the alignment of enhancer and
candidate enhancers via the function alignmentOne
. However, most of the
enhancer evolution are rapid. This package is modified from Wong's methods and
calculate the alignment score by pairwise Transcription Factors Binding
Pattern Similarity (TFBPS) between enhancer sequences and candidates.
This step is time consuming step. For quick run, users can subset the data
by given genomic coordinates.
# subset the data for test run # in human, the homolog LEP gene is located at chromosome 7 # In this test run, we will only use upstream 1M and downstream 1M of homolog # gene library(TxDb.Hsapiens.UCSC.hg38.knownGene) library(org.Hs.eg.db) eid <- mget("LEP", org.Hs.egALIAS2EG)[[1]] g_hs <- select(TxDb.Hsapiens.UCSC.hg38.knownGene, keys=eid, columns=c("GENEID", "TXCHROM", "TXSTART", "TXEND", "TXSTRAND"), keytype="GENEID") g_hs <- range(with(g_hs, GRanges(TXCHROM, IRanges(TXSTART, TXEND)))) expandGR <- function(x, ext){ stopifnot(length(x)==1) start(x) <- max(1, start(x)-ext) end(x) <- end(x)+ext GenomicRanges::trim(x) } hs <- subsetByOverlaps(hs, expandGR(g_hs, ext=1000000)) # in mouse, the homolog Lep gene is located at chromosome 6 # Here we use the subset of 1M upstream and downstream of homolog gene. library(TxDb.Mmusculus.UCSC.mm10.knownGene) library(org.Mm.eg.db) eid <- mget("Lep", org.Mm.egALIAS2EG)[[1]] g_mm <- select(TxDb.Mmusculus.UCSC.mm10.knownGene, keys=eid, columns=c("GENEID", "TXCHROM", "TXSTART", "TXEND", "TXSTRAND"), keytype="GENEID") g_mm <- range(with(g_mm, GRanges(TXCHROM, IRanges(TXSTART, TXEND), strand=TXSTRAND))) g_mm <- g_mm[seqnames(g_mm) %in% "chr6" & strand(g_mm) %in% "+"] mm <- subsetByOverlaps(mm, expandGR(g_mm, ext=1000000)) # search the binding pattern data(motifs) ## In the package, there are 10 sets of motif cluster sets. ## In this example, we use motif clusters merged by distance 60, which ## is calculated by matalgin (motifStack implementation) PWMs <- motifs[["dist60"]] ## Here we set maximalShuffleEnhancers = 100 to decrease the computation time. ## The defaults of maximalShuffleEnhancers is 1000. Increase the shuffle number ## may help to get accurate P-value. aln_hs <- searchTFBPS(seqEN, hs, PWMs = PWMs, queryGenome = Drerio, maximalShuffleEnhancers = 100) aln_mm <- searchTFBPS(seqEN, mm, PWMs = PWMs, queryGenome = Drerio, maximalShuffleEnhancers = 100) ## if you want to stick to sequence similarity search, try to use ?alignmentOne
Here we will filter the candidate regions more than 5K from TSS of homolog but within 100K from the gene body. The candidates will be also filtered by p-value.
# Step4 ext <- 100000 aln_hs <- subsetByOverlaps(aln_hs, ranges = expandGR(g_hs, ext=ext)) ## filter by distance distance(aln_hs) <- distance(peaks(aln_hs), g_hs, ignore.strand=TRUE) aln_hs <- subset(aln_hs, pval<0.1 & distance >5000) aln_hs aln_mm <- subsetByOverlaps(aln_mm, ranges = expandGR(g_mm, ext=ext)) ## filter by distance distance(aln_mm) <- distance(peaks(aln_mm), g_mm, ignore.strand=TRUE) aln_mm <- subset(aln_mm, pval<0.1 & distance >5000) aln_mm
This step will create alignments for all combination of the enhancer and the orthologs.
aln_list <- list(human=aln_hs, mouse=aln_mm) al <- alignment(seqEN, aln_list, method="ClustalW", order="input") al
Different form finding motif hits from the consensus of multiple alignment
results, the conservedMotifs
function will search the user defined
motifs form available homologs.
cm <- conservedMotifs(al[[1]], aln_list, PWMs, Drerio)
The selected candidates will be aligned cross human and mouse and then output
as phylip multiple alignment file in text
or html
format.
library(MotifDb) motifs <- query(MotifDb, "JASPAR_CORE") consensus <- sapply(motifs, consensusString) consensus <- DNAStringSet(gsub("\\?", "N", consensus)) tmpfolder <- tempdir() saveAlignments(al, output_folder = tmpfolder, motifConsensus=consensus) readLines(file.path(tmpfolder, "aln1.phylip.txt"))
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.