Project: derfinderReport-example.
This report is meant to help explore the results of the derfinder
(Collado-Torres, Nellore, Frazee, Wilks, Love, Langmead, Irizarry, Leek, and Jaffe, 2017) package using the single base-level approach and was generated using the regionReport
(Collado-Torres, Jaffe, and Leek, 2016) package. While the report is rich, it is meant to just start the exploration of the results and exemplify some of the code used to do so. If you need a more in-depth analysis for your specific data set you might want to use the customCode
argument.
Most plots were made with using ggplot2
(Wickham, 2016).
## knitrBoostrap and device chunk options
library('knitr')
opts_chunk$set(bootstrap.show.code = FALSE, dev = device, crop = NULL)
if(!outputIsHTML) opts_chunk$set(bootstrap.show.code = FALSE, dev = device, echo = FALSE)
#### Libraries needed
## Bioconductor
library('IRanges')
library('GenomicRanges')
library('GenomeInfoDb')
library('derfinder')
library('derfinderPlot')
library('ggbio')
## Need specific help about ggbio? try mailing
## the maintainer or visit https://lawremi.github.io/ggbio/
##
## Attaching package: 'ggbio'
## The following objects are masked from 'package:ggplot2':
##
## geom_bar, geom_rect, geom_segment, ggsave, stat_bin, stat_identity, xlim
if(hg19) {
library('biovizBase')
library('TxDb.Hsapiens.UCSC.hg19.knownGene')
}
## Loading required package: GenomicFeatures
## CRAN
library('ggplot2')
if(!is.null(theme)) theme_set(theme)
library('grid')
library('gridExtra')
##
## Attaching package: 'gridExtra'
## The following object is masked from 'package:Biobase':
##
## combine
## The following object is masked from 'package:BiocGenerics':
##
## combine
library('knitr')
library('RColorBrewer')
library('mgcv')
## Loading required package: nlme
##
## Attaching package: 'nlme'
## The following object is masked from 'package:IRanges':
##
## collapse
## This is mgcv 1.8-42. For overview type 'help("mgcv-package")'.
library('DT')
library('sessioninfo')
#### Code setup
## For ggplot
tmp <- fullRegions
names(tmp) <- seq_len(length(tmp))
regions.df <- as.data.frame(tmp)
regions.df$width <- width(tmp)
rm(tmp)
nulls.df <- as.data.frame(fullNullSummary)
## Special subsets: need at least 3 points for a density plot
keepChr <- table(regions.df$seqnames) > 2
regions.df.plot <- subset(regions.df, seqnames %in% names(keepChr[keepChr]))
finite.area <- finite.area[regions.df$seqnames %in% names(keepChr[keepChr])]
if(hasSig) {
## Keep only those sig
regions.df.sig <- regions.df[idx.sig, ]
keepChr <- table(regions.df.sig$seqnames) > 2
regions.df.sig <- subset(regions.df.sig, seqnames %in% names(keepChr[keepChr]))
if(nrow(regions.df.sig) > 0) {
## If there's any sig, keep those with finite areas
if(hasArea) {
regions.df.sig.area <- regions.df.sig[is.finite(regions.df.sig$area), ]
keepChr <- table(regions.df.sig.area$seqnames) > 2
regions.df.sig.area <- subset(regions.df.sig.area, seqnames %in%
names(keepChr[keepChr]))
## Save the info
hasArea <- nrow(regions.df.sig.area) > 0
}
} else {
print('Not a single chromosome had 2 or more significant regions, so plots for significant regions will be skipped.')
hasSig <- hasArea <- FALSE
}
}
## Get chr lengths
if(hg19) {
seqlengths(fullRegions) <- seqlengths(getChromInfoFromUCSC('hg19',
as.Seqinfo = TRUE))[
mapSeqlevels(names(seqlengths(fullRegions)), 'UCSC')]
}
## Find which chrs are present in the data set
chrs <- levels(seqnames(fullRegions))
## Subset the fullCoverage data in case that a subset was used
colsubset <- optionsStats$colsubset
if(!is.null(fullCov) & !is.null(colsubset)) {
fullCov <- lapply(fullCov, function(x) { x[, colsubset] })
}
## Get region coverage for the top regions
if(nBestRegions > 0) {
regionCoverage <- getRegionCoverage(fullCov = fullCov,
regions = fullRegions[seq_len(nBestRegions)],
chrsStyle = chrsStyle, species = species,
currentStyle = currentStyle, verbose = FALSE)
save(regionCoverage, file=file.path(workingDir, 'regionCoverage.Rdata'))
}
## Graphical setup: transcription database
if(hg19 & is.null(txdb)) {
txdb <- TxDb.Hsapiens.UCSC.hg19.knownGene::TxDb.Hsapiens.UCSC.hg19.knownGene
} else {
stopifnot(!is.null(txdb))
}
Theoretically, the p-values should be uniformly distributed between 0 and 1.
p1 <- ggplot(regions.df.plot, aes(x=pvalues, colour=seqnames)) +
geom_line(stat='density') + xlim(0, 1) +
labs(title='Density of p-values') + xlab('p-values') +
scale_colour_discrete(limits=chrs) + theme(legend.title=element_blank())
p1
## Compare the pvalues
summary(fullRegions$pvalues)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 0.01887 0.01887 0.62264 0.40652 0.62264 0.96226
This is the numerical summary of the distribution of the p-values.
summary(fullRegions$qvalues)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 0.01626 0.01626 0.25005 0.16318 0.25005 0.30161
This is the numerical summary of the distribution of the q-values.
qtable <- lapply(c(1e-04, 0.001, 0.01, 0.025, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
0.6, 0.7, 0.8, 0.9, 1), function(x) {
data.frame('Cut' = x, 'Count' = sum(fullRegions$qvalues <= x))
})
qtable <- do.call(rbind, qtable)
if(outputIsHTML) {
kable(qtable, format = 'markdown', align = c('c', 'c'))
} else {
kable(qtable)
}
Cut | Count |
---|---|
0.0001 | 0 |
0.0010 | 0 |
0.0100 | 0 |
0.0250 | 12 |
0.0500 | 12 |
0.1000 | 12 |
0.2000 | 13 |
0.3000 | 32 |
0.4000 | 33 |
0.5000 | 33 |
0.6000 | 33 |
0.7000 | 33 |
0.8000 | 33 |
0.9000 | 33 |
1.0000 | 33 |
This table shows the number of candidate Differentially Expressed Regions (DERs) with q-value less or equal than some commonly used cutoff values.
This is the numerical summary of the distribution of the FWER adjusted p-values. Skipped because there are no FWER-adjusted P-values.
This table shows the number of candidate Differentially Expressed Regions (DERs) with FWER adjusted p-values less or equal than some commonly used cutoff values. Skipped because there are no FWER-adjusted P-values.
xrange <- range(log10(regions.df.plot$width)) * c(0.95, 1.05)
p2a <- ggplot(regions.df.plot, aes(x=log10(width), colour=seqnames)) +
geom_line(stat='density') + labs(title='Density of region lengths') +
xlab('Region width (log10)') + scale_colour_discrete(limits=chrs) +
xlim(xrange) + theme(legend.title=element_blank())
p2b <- ggplot(regions.df.sig, aes(x=log10(width), colour=seqnames)) +
geom_line(stat='density') +
labs(title='Density of region lengths (significant only)') +
xlab('Region width (log10)') + scale_colour_discrete(limits=chrs) +
xlim(xrange) + theme(legend.title=element_blank())
grid.arrange(p2a, p2b)
This plot shows the density of the region lengths for all regions. The bottom panel is restricted to significant regions (FDR adjusted P-value < 0.1)
xrange <- range(log10(regions.df.plot$area[finite.area])) * c(0.95, 1.05)
if(inf.area > 0) {
print(paste('Dropping', inf.area, 'due to Inf values.'))
}
p3a <- ggplot(regions.df.plot[finite.area, ], aes(x=log10(area), colour=seqnames)) +
geom_line(stat='density') + labs(title='Density of region areas') +
xlab('Region area (log10)') + scale_colour_discrete(limits=chrs) +
xlim(xrange) + theme(legend.title=element_blank())
p3b <- ggplot(regions.df.sig.area, aes(x=log10(area), colour=seqnames)) +
geom_line(stat='density') +
labs(title='Density of region areas (significant only)') +
xlab('Region area (log10)') + scale_colour_discrete(limits=chrs) +
xlim(xrange) + theme(legend.title=element_blank())
grid.arrange(p3a, p3b)
This plot shows the density of the region areas for all regions. The bottom panel is restricted to significant regions (FDR adjusted P-value < 0.1)
p4 <- ggplot(nulls.df, aes(x=log10(width), colour=chr)) +
geom_line(stat='density') + labs(title='Density of null region lengths') +
xlab('Region width (log10)') + scale_colour_discrete(limits=chrs) +
theme(legend.title=element_blank())
nulls.inf <- !is.finite(nulls.df$area)
if(sum(nulls.inf) > 0) {
print(paste('Dropping', sum(nulls.inf), 'due to Inf values.'))
}
p5 <- ggplot(nulls.df[!nulls.inf, ], aes(x=log10(area), colour=chr)) +
geom_line(stat='density') + labs(title='Density of null region areas') +
xlab('Region area (log10)') + scale_colour_discrete(limits=chrs) +
theme(legend.title=element_blank())
grid.arrange(p4, p5)
This plot shows the density of the null region lengths and areas. There were a total of 52 null regions.
xrange <- range(log2(regions.df.plot$meanCoverage)) * c(0.95, 1.05)
p6a <- ggplot(regions.df.plot, aes(x=log2(meanCoverage), colour=seqnames)) +
geom_line(stat='density') + labs(title='Density of region mean coverage') +
xlab('Region mean coverage (log2)') + scale_colour_discrete(limits=chrs) +
xlim(xrange) + theme(legend.title=element_blank())
p6b <- ggplot(regions.df.sig, aes(x=log2(meanCoverage), colour=seqnames)) +
geom_line(stat='density') +
labs(title='Density of region mean coverage (significant only)') +
xlab('Region mean coverage (log2)') + scale_colour_discrete(limits=chrs) +
xlim(xrange) + theme(legend.title=element_blank())
grid.arrange(p6a, p6b)
This plot shows the density of the region mean coverage for all regions. The bottom panel is restricted to significant regions (FDR adjusted P-value < 0.1)
The following plots are MA-style plots comparing each group vs the first one. The mean coverage is calculated using only two groups at a time and is weighted according to the number of samples on each group. Note that the mean coverage and fold change as calculated here do not taking into account the library sizes.
These plots are only shown when there are two or more groups. A total of 1 plot(s) were made.
for(j in grep('log2FoldChange', colnames(values(fullRegions)))) {
## Identify the groups
groups <- strsplit(gsub('log2FoldChange', '',
colnames(values(fullRegions))[j]), 'vs')[[1]]
## Calculate the mean coverage only using the 2 groups in question
j.mean <- which(colnames(values(fullRegions)) %in% paste0('mean', groups))
groups.n <- sapply(groups, function(x) { sum(optionsStats$groupInfo == x) })
ma.mean.mat <- as.matrix(values(fullRegions)[, j.mean])
## Weighted means
ma.mean <- drop(ma.mean.mat %*% groups.n) / sum(groups.n) +
optionsStats$scalefac
ma.fold2 <- drop(log2(ma.mean.mat + optionsStats$scalefac) %*% c(1, -1))
ma <- data.frame(mean=ma.mean, log2FoldChange=ma.fold2)
ma2 <- ma[is.finite(ma$log2FoldChange), ]
fold.mean <- data.frame(foldMean=mean(ma2$log2FoldChange, na.rm=TRUE))
p.ma <- ggplot(ma, aes(x=log2(mean), y=log2FoldChange)) +
geom_point(size=1.5, alpha=1/5) +
ylab("Fold Change [log2(x + sf)]\nRed dashed line at mean; blue line is GAM fit: y ~ s(x, bs = 'cs')") +
xlab(paste('Mean coverage [log2(x + sf)] using only groups', groups[1], 'and',
groups[2])) + labs(title=paste('MA style plot:', groups[1], 'vs ',
groups[2])) + geom_hline(aes(yintercept=foldMean), data=fold.mean,
colour='#990000', linetype='dashed') +
geom_smooth(aes(y=log2FoldChange, x=log2(mean)), data=subset(ma2,
mean > 0), method = 'gam', formula = y ~ s(x, bs = 'cs'))
print(p.ma)
}
The following plots were made using ggbio
(Yin, Cook, and Lawrence, 2012) which in turn uses ggplot2
(Wickham, 2016). For more details check plotOverview
in derfinder
(Collado-Torres, Nellore, Frazee et al., 2017).
plotOverview(regions=fullRegions, type=pvalVar, base_size=overviewParams$base_size, areaRel=overviewParams$areaRel, legend.position=c(0.97, 0.12))
This plot shows the genomic locations of the candidate regions found in the analysis. The significant regions (FDR adjusted P-value less than 0.1) are highlighted and the area of the regions is shown on top of each chromosome. Note that the area is in a relative scale.
plotOverview(regions=fullRegions, annotation=fullRegions, type='annotation', base_size=overviewParams$base_size, areaRel=overviewParams$areaRel, legend.position=c(0.97, 0.12))
This genomic overview plot shows the annotation region type for the candidate regions. Note that the regions are shown only if the annotation information is available. Below is a table of the actual number of results per annotation region type.
annoReg <- table(fullRegions$region, useNA='always')
annoReg.df <- data.frame(Region=names(annoReg), Count=as.vector(annoReg))
if(outputIsHTML) {
kable(annoReg.df, format = 'markdown', align=rep('c', 3))
} else {
kable(annoReg.df)
}
Region | Count |
---|---|
upstream | 0 |
promoter | 0 |
overlaps 5’ | 0 |
inside | 33 |
overlaps 3’ | 0 |
close to 3’ | 0 |
downstream | 0 |
covers | 0 |
NA | 0 |
plotOverview(regions=fullRegions[idx.sig], annotation=fullRegions[idx.sig], type='annotation', base_size=overviewParams$base_size, areaRel=overviewParams$areaRel, legend.position=c(0.97, 0.12))
This genomic overview plot shows the annotation region type for the candidate regions that have a FDR adjusted P-valueless than 0.1. Note that the regions are shown only if the annotation information is available.
Below are the plots for the top 15 candidate DERs as ranked by area. For each plot, annotation is shown if the candidate DER has a minimum overlap of 20 base pairs with annotation information (strand specific). If present, exons are collapsed and shown in blue. Introns are shown in light blue. The title of each plot is composed of the name of the nearest annotation element, the distance to it, and whether the region of the genome the DER falls into; all three pieces of information are based on bumphunter::matchGenes()
.
The annotation depends on the Genomic State used. For details on which one was used for this report check the call to mergeResults
in the reproducibility details.
if(nBestRegions > 0) {
plotRegionCoverage(regions = fullRegions, regionCoverage = regionCoverage,
groupInfo = optionsStats$groupInfo, nearestAnnotation = regions.df,
annotatedRegions = fullAnnotatedRegions,
whichRegions = seq_len(min(nBestRegions, length(fullRegions))),
colors = NULL, scalefac = optionsStats$scalefac, ask = FALSE,
verbose = TRUE, txdb = txdb)
}
## 2023-05-07 05:32:52.072801 plotRegionCoverage: extracting Tx info
## 2023-05-07 05:32:56.519818 plotRegionCoverage: getting Tx plot info
Below is a table summarizing the number of genomic states per region.
info <- do.call(rbind, lapply(fullAnnotatedRegions$countTable, function(x) { data.frame(table(x)) }))
colnames(info) <- c('Number of Overlapping States', 'Frequency')
info$State <- gsub('\\..*', '', rownames(info))
rownames(info) <- NULL
if(outputIsHTML) {
kable(info, format = 'markdown', align=rep('c', 4))
} else {
kable(info)
}
Number of Overlapping States | Frequency | State |
---|---|---|
0 | 22 | exon |
1 | 11 | exon |
0 | 33 | intergenic |
0 | 30 | intron |
1 | 3 | intron |
The following is a venn diagram showing how many regions overlap known exons, introns, and intergenic segments, none of them, or multiple of these groups.
## Venn diagram for all regions
venn <- vennRegions(fullAnnotatedRegions, counts.col = 'blue',
main = 'Regions overlapping genomic states')
The following plot is the genomic states venn diagram only for the significant regions.
## Venn diagram for all regions
vennSig <- vennRegions(fullAnnotatedRegions, counts.col = 'blue',
main = 'Significant regions overlapping genomic states',
subsetIndex = idx.sig)
Below is an interactive table with the top 33 regions (out of 33) as ranked by area. Inf and -Inf are shown as 1e100 and -1e100 respectively. Use the search function to find your region of interest or sort by one of the columns.
topArea <- head(regions.df, nBestRegions * 5)
topArea <- data.frame('areaRank'=order(topArea$area, decreasing=TRUE), topArea)
## Clean up -Inf, Inf if present
## More details at https://github.com/ramnathv/rCharts/issues/259
replaceInf <- function(df, colsubset=seq_len(ncol(df))) {
for(i in colsubset) {
inf.idx <- !is.finite(df[, i])
if(any(inf.idx)) {
inf.sign <- sign(df[inf.idx, i])
df[inf.idx, i] <- inf.sign * 1e100
}
}
return(df)
}
topArea <- replaceInf(topArea, grep('log2FoldChange|value|area',
colnames(topArea)))
## Format p-values in scientific notation
for(i in which(grepl('pvalues$|qvalues$|fwer$', colnames(topArea)))) topArea[, i] <- format(topArea[, i], scientific = TRUE)
## Make the table
if(outputIsHTML) {
datatable(topArea, options = list(pagingType='full_numbers', pageLength=10, scrollX='100%'), rownames = FALSE) %>% formatRound(which(grepl('value$|area$|mean|log2FoldChange', colnames(topArea))), digits)
} else {
## Only print the top part if your output is a PDF file
df_top <- head(topArea, 20)
for(i in which(grepl('value$|area$|mean|log2FoldChange', colnames(topArea)))) df_top[, i] <- round(df_top[, i], digits)
kable(df_top)
}
The following plots were made using ggbio
(Yin, Cook, and Lawrence, 2012) which in turn uses ggplot2
(Wickham, 2016). For more details check plotCluster()
in derfinder
(Collado-Torres, Nellore, Frazee et al., 2017).
## Select clusters by cluster area
df <- data.frame(area = fullRegions$area,
clusterChr = paste0(as.integer(fullRegions$cluster),
chr = as.character(seqnames(fullRegions))))
regionClustAreas <- tapply(df$area, df$clusterChr, sum)
bestArea <- sapply(names(head(sort(regionClustAreas, decreasing=TRUE),
nBestClusters)), function(y) { which(df$clusterChr == y)[[1]]})
## Graphical setup: ideograms
if(hg19 & is.null(p.ideos)) {
## Load ideogram info
data(hg19IdeogramCyto, package = 'biovizBase')
ideos.set <- as.character(unique(seqnames(fullRegions[bestArea])))
p.ideos <- lapply(ideos.set, function(xx) {
plotIdeogram(hg19IdeogramCyto, mapSeqlevels(xx, 'UCSC'))
})
names(p.ideos) <- ideos.set
} else {
stopifnot(!is.null(p.ideos))
}
## Graphical setup: main plotting function
regionClusterPlot <- function(idx, tUse='qval') {
## Chr specific selections
chr <- as.character(seqnames(fullRegions[idx]))
p.ideo <- p.ideos[[chr]]
covInfo <- fullCov[[chr]]
## Make the plot
p <- plotCluster(idx, regions = fullRegions, annotation = regions.df,
coverageInfo = covInfo, groupInfo = optionsStats$groupInfo,
titleUse = tUse, txdb = txdb, p.ideogram = p.ideo)
print(p)
rm(p.ideo, covInfo)
return(invisible(TRUE))
}
Below are the best 2 region clusters ordered by cluster area (sum of the area of regions inside a cluster). The region with the highest area in the cluster is shown with a red bar.
## Genome plots
for(idx in bestArea) {
regionClusterPlot(idx, ifelse(nullExist, ifelse(pvalVar == 'fwer', ifelse(fwerExist, 'fwer', 'qval'), pvalVar), 'none'))
}
Below is the information on how the samples were permuted.
## Get the permutation information
nSamples <- seq_len(length(optionsStats$groupInfo))
permuteInfo <- lapply(seeds, function(x) {
set.seed(x)
idx <- sample(nSamples)
data.frame(optionsStats$groupInfo[idx])
})
permuteInfo <- cbind(data.frame(optionsStats$groupInfo), do.call(cbind, permuteInfo))
colnames(permuteInfo) <- c('original', paste0('perm', seq_len(optionsStats$nPermute)))
## The raw information
# permuteInfo
n <- names(table(permuteInfo[, 2]))
permuteDetail <- data.frame(matrix(NA, nrow=optionsStats$nPermute * length(n),
ncol = 2 + length(n)))
permuteDetail[, 1] <- rep(seq_len(optionsStats$nPermute), each=length(n))
permuteDetail[, 2] <- rep(n, optionsStats$nPermute)
colnames(permuteDetail) <- c('permutation', 'group', as.character(n))
l <- 1
m <- 3:ncol(permuteDetail)
for(j in n) {
k <- which(permuteInfo[, 1] == j)
for(i in 2:(optionsStats$nPermute + 1)) {
permuteDetail[l, m] <- table(permuteInfo[k, i])
l <- l + 1
}
}
## How many permutations resulted in the original grouping rearrangement
obs <- diag(length(m)) * sapply(
permuteDetail$group[ permuteDetail$permutation == 1], function(n) {
sum(optionsStats$groupInfo == n)
})
sameAsObs <- sapply(seq_len(length(seeds)), function(i) {
p <- as.matrix(permuteDetail[permuteDetail$permutation == i, m])
all((p - obs) == 0)
})
## Print the summary
summary(permuteDetail[, m])
## CEU YRI
## Min. : 7.00 Min. :3
## 1st Qu.: 8.75 1st Qu.:4
## Median :10.50 Median :5
## Mean :10.50 Mean :5
## 3rd Qu.:12.25 3rd Qu.:6
## Max. :14.00 Max. :7
This table shows the summary per group of how many samples were assigned to the group. It can be used for fast detection of anomalies. Also note that 0 permutations out of 1 total permutations resulted in the same grouping as in the original observed data.
Note that in derfinder
the re-sampling of the samples is done without replacement. This is done to avoid singular model matrices. While the sample balance is the same across the permutations, what changes are the adjusted variables (including the column medians).
The following table shows how the group labels were permuted. This can be useful to detect whether a permutation in particular had too many samples of a group labeled as another group, meaning that the resulting permuted group label resulted in pretty much a name change.
if(outputIsHTML) {
datatable(permuteDetail, options = list(pagingType='full_numbers', pageLength=10, scrollX='100%'))
} else {
## Only print the top part if your output is a PDF file
kable(head(permuteDetail, 20))
}
The F-statistic cutoff used was 1 and type of cutoff used was manual. Furthermore, the maximum region (data) gap was set to and the maximum cluster gap was set to .
This analysis was on each chromosome was performed with the following call to analyzeChr()
(shown for one chromosome only):
## analyzeChr(chr = "21", coverageInfo = genomeData, models = models,
## cutoffFstat = 1, cutoffType = "manual", seeds = 20140330,
## groupInfo = groupInfo, writeOutput = TRUE, mc.cores = 1,
## returnOutput = FALSE)
The results were merged using the following call to mergeResults()
:
## mergeResults(chrs = "21", prefix = "derfinderReport-example",
## genomicState = genomicState$fullGenome)
This report was generated in path /__w/regionReport/regionReport/docs/reference using the following call to derfinderReport()
:
## derfinderReport(prefix = "derfinderReport-example", browse = FALSE,
## nBestRegions = 15, makeBestClusters = TRUE, fullCov = list(`21` = genomeDataRaw$coverage),
## optionsStats = optionsStats)
Date the report was generated.
## [1] "2023-05-07 05:33:27 UTC"
Wallclock time spent generating the report.
## Time difference of 54.473 secs
R
session information.
## [1m[36m─ Session info ───────────────────────────────────────────────────────────────────────────────────────────────────────[39m[22m
## [3m[90msetting [39m[23m [3m[90mvalue[39m[23m
## version R version 4.3.0 (2023-04-21)
## os Ubuntu 22.04.2 LTS
## system x86_64, linux-gnu
## ui X11
## language en
## collate C
## ctype en_US.UTF-8
## tz UTC
## date 2023-05-07
## pandoc 2.19.2 @ /usr/local/bin/ (via rmarkdown)
##
## [1m[36m─ Packages ───────────────────────────────────────────────────────────────────────────────────────────────────────────[39m[22m
## [3m[90mpackage [39m[23m [3m[90m*[39m[23m [3m[90mversion [39m[23m [3m[90mdate (UTC)[39m[23m [3m[90mlib[39m[23m [3m[90msource[39m[23m
## annotate 1.78.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## AnnotationDbi * 1.62.1 [90m2023-05-02[39m [90m[1][39m [90mBioconductor[39m
## AnnotationFilter 1.24.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## backports 1.4.1 [90m2021-12-13[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## base64enc 0.1-3 [90m2015-07-28[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## bibtex 0.5.1 [90m2023-01-26[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## Biobase * 2.60.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## BiocFileCache 2.8.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## BiocGenerics * 0.46.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## BiocIO 1.10.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## BiocManager 1.30.20 [90m2023-02-24[39m [90m[2][39m [90mCRAN (R 4.3.0)[39m
## BiocParallel * 1.34.1 [90m2023-05-05[39m [90m[1][39m [90mBioconductor[39m
## BiocStyle * 2.28.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## biomaRt 2.56.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## Biostrings 2.68.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## biovizBase * 1.48.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## bit 4.0.5 [90m2022-11-15[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## bit64 4.0.5 [90m2020-08-30[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## bitops 1.0-7 [90m2021-04-24[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## blob 1.2.4 [90m2023-03-17[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## bookdown 0.33 [90m2023-03-06[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## BSgenome 1.68.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## bslib 0.4.2 [90m2022-12-16[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## bumphunter 1.42.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## cachem 1.0.8 [90m2023-05-01[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## callr 3.7.3 [90m2022-11-02[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## checkmate 2.2.0 [90m2023-04-27[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## cli 3.6.1 [90m2023-03-23[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## cluster 2.1.4 [90m2022-08-22[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## codetools 0.2-19 [90m2023-02-01[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## colorspace 2.1-0 [90m2023-01-23[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## crayon 1.5.2 [90m2022-09-29[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## crosstalk 1.2.0 [90m2021-11-04[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## curl 5.0.0 [90m2023-01-12[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## data.table 1.14.8 [90m2023-02-17[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## DBI 1.1.3 [90m2022-06-18[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## dbplyr 2.3.2 [90m2023-03-21[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## DEFormats 1.28.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## DelayedArray 0.26.2 [90m2023-05-05[39m [90m[1][39m [90mBioconductor[39m
## derfinder * 1.34.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## derfinderHelper 1.34.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## derfinderPlot * 1.34.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## desc 1.4.2 [90m2022-09-08[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## DESeq2 * 1.40.1 [90m2023-05-02[39m [90m[1][39m [90mBioconductor[39m
## devtools 2.4.5 [90m2022-10-11[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## DEXSeq * 1.46.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## dichromat 2.0-0.1 [90m2022-05-02[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## digest 0.6.31 [90m2022-12-11[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## doRNG 1.8.6 [90m2023-01-16[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## downlit 0.4.2 [90m2022-07-05[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## dplyr 1.1.2 [90m2023-04-20[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## DT * 0.27 [90m2023-01-17[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## edgeR 3.42.2 [90m2023-05-02[39m [90m[1][39m [90mBioconductor[39m
## ellipsis 0.3.2 [90m2021-04-29[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## ensembldb 2.24.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## evaluate 0.20 [90m2023-01-17[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## fansi 1.0.4 [90m2023-01-22[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## farver 2.1.1 [90m2022-07-06[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## fastmap 1.1.1 [90m2023-02-24[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## filelock 1.0.2 [90m2018-10-05[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## foreach 1.5.2 [90m2022-02-02[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## foreign 0.8-84 [90m2022-12-06[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## Formula 1.2-5 [90m2023-02-24[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## fs 1.6.2 [90m2023-04-25[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## genefilter 1.82.1 [90m2023-05-02[39m [90m[1][39m [90mBioconductor[39m
## geneplotter 1.78.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## generics 0.1.3 [90m2022-07-05[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## GenomeInfoDb * 1.36.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## GenomeInfoDbData 1.2.10 [90m2023-05-07[39m [90m[1][39m [90mBioconductor[39m
## GenomicAlignments 1.36.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## GenomicFeatures * 1.52.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## GenomicFiles 1.36.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## GenomicRanges * 1.52.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## GGally 2.1.2 [90m2021-06-21[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## ggbio * 1.48.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## ggplot2 * 3.4.2 [90m2023-04-03[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## glue 1.6.2 [90m2022-02-24[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## graph 1.78.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## gridExtra * 2.3 [90m2017-09-09[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## gtable 0.3.3 [90m2023-03-21[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## highr 0.10 [90m2022-12-22[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## Hmisc 5.0-1 [90m2023-03-08[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## hms 1.1.3 [90m2023-03-21[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## htmlTable 2.4.1 [90m2022-07-07[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## htmltools 0.5.5 [90m2023-03-23[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## htmlwidgets 1.6.2 [90m2023-03-17[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## httpuv 1.6.9 [90m2023-02-14[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## httr 1.4.5 [90m2023-02-24[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## hwriter 1.3.2.1 [90m2022-04-08[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## IRanges * 2.34.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## iterators 1.0.14 [90m2022-02-05[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## jquerylib 0.1.4 [90m2021-04-26[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## jsonlite 1.8.4 [90m2022-12-06[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## KEGGREST 1.40.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## knitr * 1.42 [90m2023-01-25[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## knitrBootstrap 1.0.2 [90m2018-05-24[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## labeling 0.4.2 [90m2020-10-20[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## later 1.3.1 [90m2023-05-02[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## lattice 0.21-8 [90m2023-04-05[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## lazyeval 0.2.2 [90m2019-03-15[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## lifecycle 1.0.3 [90m2022-10-07[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## limma 3.56.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## locfit 1.5-9.7 [90m2023-01-02[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## lubridate 1.9.2 [90m2023-02-10[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## magrittr 2.0.3 [90m2022-03-30[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## markdown 1.6 [90m2023-04-07[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## Matrix 1.5-4 [90m2023-04-04[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## MatrixGenerics * 1.12.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## matrixStats * 0.63.0 [90m2022-11-18[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## memoise 2.0.1 [90m2021-11-26[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## mgcv * 1.8-42 [90m2023-03-02[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## mime 0.12 [90m2021-09-28[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## miniUI 0.1.1.1 [90m2018-05-18[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## munsell 0.5.0 [90m2018-06-12[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## nlme * 3.1-162 [90m2023-01-31[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## nnet 7.3-19 [90m2023-05-03[39m [90m[3][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## OrganismDbi 1.42.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## pasilla * 1.28.0 [90m2023-04-27[39m [90m[1][39m [90mBioconductor[39m
## pheatmap * 1.0.12 [90m2019-01-04[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## pillar 1.9.0 [90m2023-03-22[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## pkgbuild 1.4.0 [90m2022-11-27[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## pkgconfig 2.0.3 [90m2019-09-22[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## pkgdown 2.0.7 [90m2022-12-14[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## pkgload 1.3.2 [90m2022-11-16[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## plyr 1.8.8 [90m2022-11-11[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## png 0.1-8 [90m2022-11-29[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## prettyunits 1.1.1 [90m2020-01-24[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## processx 3.8.1 [90m2023-04-18[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## profvis 0.3.8 [90m2023-05-02[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## progress 1.2.2 [90m2019-05-16[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## promises 1.2.0.1 [90m2021-02-11[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## ProtGenerics 1.32.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## ps 1.7.5 [90m2023-04-18[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## purrr 1.0.1 [90m2023-01-10[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## qvalue 2.32.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## R6 2.5.1 [90m2021-08-19[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## ragg 1.2.5 [90m2023-01-12[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## rappdirs 0.3.3 [90m2021-01-31[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## RBGL 1.76.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## RColorBrewer * 1.1-3 [90m2022-04-03[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## Rcpp 1.0.10 [90m2023-01-22[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## RCurl 1.98-1.12 [90m2023-03-27[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## RefManageR 1.4.0 [90m2022-09-30[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## regionReport * 1.35.0 [90m2023-05-07[39m [90m[1][39m [90mBioconductor[39m
## remotes 2.4.2 [90m2021-11-30[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## reshape 0.8.9 [90m2022-04-12[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## reshape2 1.4.4 [90m2020-04-09[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## restfulr 0.0.15 [90m2022-06-16[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## rjson 0.2.21 [90m2022-01-09[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## rlang 1.1.1 [90m2023-04-28[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## rmarkdown 2.21 [90m2023-03-26[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## rngtools 1.5.2 [90m2021-09-20[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## rpart 4.1.19 [90m2022-10-21[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## rprojroot 2.0.3 [90m2022-04-02[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## Rsamtools 2.16.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## RSQLite 2.3.1 [90m2023-04-03[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## rstudioapi 0.14 [90m2022-08-22[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## rtracklayer 1.60.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## S4Arrays 1.0.1 [90m2023-05-01[39m [90m[1][39m [90mBioconductor[39m
## S4Vectors * 0.38.1 [90m2023-05-02[39m [90m[1][39m [90mBioconductor[39m
## sass 0.4.6 [90m2023-05-03[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## scales 1.2.1 [90m2022-08-20[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## sessioninfo * 1.2.2 [90m2021-12-06[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## shiny 1.7.4 [90m2022-12-15[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## statmod 1.5.0 [90m2023-01-06[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## stringi 1.7.12 [90m2023-01-11[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## stringr 1.5.0 [90m2022-12-02[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## SummarizedExperiment * 1.30.1 [90m2023-05-01[39m [90m[1][39m [90mBioconductor[39m
## survival 3.5-5 [90m2023-03-12[39m [90m[3][39m [90mCRAN (R 4.3.0)[39m
## systemfonts 1.0.4 [90m2022-02-11[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## textshaping 0.3.6 [90m2021-10-13[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## tibble 3.2.1 [90m2023-03-20[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## tidyselect 1.2.0 [90m2022-10-10[39m [90m[1][39m [90mCRAN (R 4.3.0)[39m
## timechange 0.2.0 [90m2023-01-11[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## TxDb.Hsapiens.UCSC.hg19.knownGene * 3.2.2 [90m2022-12-06[39m [90m[1][39m [90mBioconductor[39m
## urlchecker 1.0.1 [90m2021-11-30[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## usethis 2.1.6 [90m2022-05-25[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## utf8 1.2.3 [90m2023-01-31[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## VariantAnnotation 1.46.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## vctrs 0.6.2 [90m2023-04-19[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## whisker 0.4.1 [90m2022-12-05[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## withr 2.5.0 [90m2022-03-03[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## xfun 0.39 [90m2023-04-20[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## XML 3.99-0.14 [90m2023-03-19[39m [90m[1][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## xml2 1.3.4 [90m2023-04-27[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## xtable 1.8-4 [90m2019-04-21[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## XVector 0.40.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
## yaml 2.3.7 [90m2023-01-23[39m [90m[2][39m [1m[35mRSPM (R 4.3.0)[39m[22m
## zlibbioc 1.46.0 [90m2023-04-25[39m [90m[1][39m [90mBioconductor[39m
##
## [90m [1] /__w/_temp/Library[39m
## [90m [2] /usr/local/lib/R/site-library[39m
## [90m [3] /usr/local/lib/R/library[39m
##
## [1m[36m──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────[39m[22m
Pandoc version used: 2.19.2.
This report was created with regionReport
(Collado-Torres, Jaffe, and Leek, 2016) using rmarkdown
(Allaire, Xie, Dervieux et al., 2023) while knitr
(Xie, 2014) and DT
(Xie, Cheng, and Tan, 2023) were running behind the scenes.
Citations made with RefManageR (McLean, 2017). The BibTeX file can be found here.
[1] J. Allaire, Y. Xie, C. Dervieux, et al. rmarkdown: Dynamic Documents for R. R package version 2.21. 2023. URL: https://github.com/rstudio/rmarkdown.
[2] L. Collado-Torres, A. E. Jaffe, and J. T. Leek. “regionReport: Interactive reports for region-level and feature-level genomic analyses [version2; referees: 2 approved, 1 approved with reservations]”. In: F1000Research 4 (2016), p. 105. DOI: 10.12688/f1000research.6379.2. URL: http://f1000research.com/articles/4-105/v2.
[3] L. Collado-Torres, A. Nellore, A. C. Frazee, et al. “Flexible expressed region analysis for RNA-seq with derfinder”. In: Nucl. Acids Res. (2017). DOI: 10.1093/nar/gkw852. URL: http://nar.oxfordjournals.org/content/early/2016/09/29/nar.gkw852.
[4] M. W. McLean. “RefManageR: Import and Manage BibTeX and BibLaTeX References in R”. In: The Journal of Open Source Software (2017). DOI: 10.21105/joss.00338.
[5] H. Wickham. ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York, 2016. ISBN: 978-3-319-24277-4. URL: https://ggplot2.tidyverse.org.
[6] Y. Xie. “knitr: A Comprehensive Tool for Reproducible Research in R”. In: Implementing Reproducible Computational Research. Ed. by V. Stodden, F. Leisch and R. D. Peng. ISBN 978-1466561595. Chapman and Hall/CRC, 2014.
[7] Y. Xie, J. Cheng, and X. Tan. DT: A Wrapper of the JavaScript Library ‘DataTables’. R package version 0.27. 2023. URL: https://github.com/rstudio/DT.
[8] T. Yin, D. Cook, and M. Lawrence. “ggbio: an R package for extending the grammar of graphics for genomic data”. In: Genome Biology 13.8 (2012), p. R77.