Last updated: 2021-05-26
Checks: 7 0
Knit directory: hesc-epigenomics/
This reproducible R Markdown analysis was created with workflowr (version 1.6.2). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.
The command set.seed(20210202)
was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.
Great job! Recording the operating system, R version, and package versions is critical for reproducibility.
Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.
Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.
Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.
The results in this page were generated with repository version dc04f09. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.
Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish
or wflow_git_commit
). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:
Ignored files:
Ignored: .Rhistory
Ignored: .Rproj.user/
Ignored: analysis/200510_chromosomes_extended.Rmd
Ignored: analysis/210413_bivalent_groups_extended.Rmd
Ignored: analysis/210518_gene_group_categories_extended.Rmd
Ignored: analysis/annotations_cache/
Ignored: analysis/annotations_extended.Rmd
Ignored: analysis/gene_set_analysis_extended.Rmd
Ignored: analysis/global_bins_extended.Rmd
Ignored: analysis/histone_marks_vs_expression_extended.Rmd
Ignored: analysis/kumar_2020_comparison_extended.Rmd
Ignored: analysis/messmer_2019_gene_groups_extended.Rmd
Ignored: data/bed/
Ignored: data/bw
Ignored: data/igv/
Ignored: data/liftover/
Ignored: data/other/
Ignored: data/peaks
Ignored: data/rnaseq/
Untracked files:
Untracked: code/heatmap_panels.R
Untracked: output/01_profiles.svg
Untracked: output/01_proportional_w_h2aub.svg
Untracked: output/01_proportional_w_h2aub_and_not_enriched_manual.svg
Untracked: output/01_proportional_w_h2aub_not_enriched.svg
Untracked: output/01_proportional_w_k4.png
Untracked: output/01_proportional_w_k4.svg
Untracked: output/01_sizes.svg
Untracked: output/Kumar_2020/
Untracked: output/gene_groups_k27_enriched_selected_by_shrunk_lfc.png
Untracked: output/gene_groups_k27_k4_enriched_plus_h2aub.png
Untracked: output/gene_groups_k27_k4_ni_enriched_selected_by_shrunk_lfc.png
Untracked: output/gene_groups_k27_up_subsets.png
Untracked: output/gene_groups_panel_by_k27.png
Untracked: output/gene_groups_panel_by_k27_regardless_k4_high_plus_h2aub.png
Untracked: output/gene_groups_panel_by_k4.png
Untracked: output/gene_groups_panel_only_k4_intersecting.png
Untracked: output/gene_groups_panel_only_k4_ni_high.png
Untracked: output/gene_groups_panel_only_k4_ni_high_plus_h2aub.png
Untracked: output/gene_groups_panel_only_k4_pr_high_plus_h2aub.png
Untracked: output/gene_groups_panel_w_k4.png
Untracked: output/gene_groups_panel_w_k4_enriched_naive.png
Untracked: output/gene_groups_panel_w_k4_naive.png
Untracked: output/h3k27m3_h2aub_panel_at_differential_k27_all_k4_enriched.png
Untracked: output/test_proportional.png
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
These are the previous versions of the repository in which changes were made to the R Markdown (analysis/master_gene_table.Rmd
) and HTML (docs/master_gene_table.html
) files. If you’ve configured a remote Git repository (see ?wflow_git_remote
), click on the hyperlinks in the table below to view the files as they were in that past version.
File | Version | Author | Date | Message |
---|---|---|---|---|
Rmd | dc04f09 | cnluzon | 2021-05-26 | wflow_publish(“./analysis/master_gene_table.Rmd”, verbose = T) |
html | 58564ac | cnluzon | 2021-05-26 | Build site. |
Rmd | e6efbe9 | cnluzon | 2021-05-26 | wflow_publish(“./analysis/master_gene_table.Rmd”, verbose = T) |
This notebook shows how the master gene table is generated. Essentially, genes from hg38
human genome annotation are retrieved and the region around their TSS is scored for H3K4m3, H3K27m3 and H2AUb. DeSeq2 is applied in a Minute-ChIP specific manner and genes are annotated as differential across conditions: Primed vs Naïve, EZH2i treated Naïve vs Naïve and EZH2i treated Primed vs Primed. Final table includes these values, fold change differences and statistical significance scores for all genes.
Additionally, expression values are also used to do a DeSeq2 analysis and such scores are incorporated to the table.
hg38
refFlat.txt file that was also used for the RNA-seq primary analysis: http://igenomes.illumina.com.s3-website-us-east-1.amazonaws.com/Homo_sapiens/UCSC/hg38/Homo_sapiens_UCSC_hg38.tar.gzThe annotation file used is the one coming from Annotations/Genes/refFlat.txt.
Additionally, since all isoforms available are annotated, one is selected per gene to do the TSS analysis. If corresponding identifier in knownCanonical from UCSC data tables exists, then corresponding isoform is used. If more than one identifier corresponds, the longest annotation is selected. For the rest, longest annotation is selected.
rsem_deseq_analysis <- function(counts_file, c1_columns, c2_columns, c1_name, c2_name, reference, alpha = 0.05, shrunk = TRUE) {
if (! reference %in% c(c1_name, c2_name)) {
stop(paste(reference, "must be", c1_name, "or", c2_name))
}
counts <- read.table(counts_file, sep = "\t", header = T)
columns <- c(c1_columns, c2_columns)
samples <- data.frame(row.names = columns, condition = factor(c(rep(c1_name, length(c1_columns)), rep(c2_name, length(c2_columns)))))
samples$condition <- relevel(samples$condition, ref = reference)
counts_only <- round(counts[, columns])
rownames(counts_only) <- counts$gene_id
dds <- DESeqDataSetFromMatrix(countData = counts_only,
colData = samples,
design = ~ condition)
dds <- DESeq(dds)
res <- NULL
if (shrunk == TRUE) {
coef_name <- paste("condition", c2_name, "vs", c1_name, sep = "_")
res <- lfcShrink(dds, coef=coef_name, type="apeglm")
} else {
res <- results(dds, alpha=alpha)
}
res
}
ni_pr_expression_analysis <- function(datadir, alpha = 0.05) {
counts_file <- file.path(datadir, "rnaseq/Kumar_2020/rsem.merged.gene_counts.tsv")
c1_columns <- paste("Kumar_2020_Naive", c("R1", "R2", "R3"), sep = "_")
c2_columns <- paste("Kumar_2020_Primed", c("R1", "R2", "R3"), sep = "_")
rsem_deseq_analysis(counts_file, c1_columns, c2_columns, "Naive", "Primed", "Naive", alpha)
}
ni_ezh2i_expression_analysis <- function(datadir, alpha = 0.05) {
counts_file <- file.path(datadir, "rnaseq/Kumar_2020/rsem.merged.gene_counts.tsv")
c1_columns <- paste("Kumar_2020_Naive", c("R1", "R2", "R3"), sep = "_")
c2_columns <- paste("Kumar_2020_Naive_EZH2i", c("R1", "R2", "R3"), sep = "_")
rsem_deseq_analysis(counts_file, c1_columns, c2_columns, "Naive", "EZH2i", "Naive", alpha)
}
pr_ezh2i_expression_analysis <- function(datadir, alpha = 0.05) {
counts_file <- file.path(datadir, "rnaseq/Kumar_2020/rsem.merged.gene_counts.tsv")
c1_columns <- paste("Kumar_2020_Primed", c("R1", "R2", "R3"), sep = "_")
c2_columns <- paste("Kumar_2020_Primed_EZH2i", c("R1", "R2", "R3"), sep = "_")
rsem_deseq_analysis(counts_file, c1_columns, c2_columns, "Naive", "EZH2i", "Naive", alpha)
}
make_df <- function(diffres, name_suffix) {
df <- data.frame(diffres)
colnames(df) <- paste(colnames(df), name_suffix, sep = "_")
df$gene <- rownames(df)
df
}
# genes <- genes_hg38()
genes <- canonical_genes_hg38(file.path(params$datadir, "bed/Kumar_2020/refFlat.txt"),
file.path(params$datadir, "bed/Kumar_2020/knownCanonical.txt"))
export(genes, "./data/bed/Kumar_2020/Kumar_2020_genes_hg38_UCSC.bed")
genes_tss_broad <- promoters(genes, upstream = params$tss_wide, downstream = params$tss_wide)
genes_tss_narrow <- promoters(genes, upstream = params$tss_narrow, downstream = params$tss_narrow)
# bwfiles per histone mark
bwdir <- file.path(params$datadir, "bw/Kumar_2020")
bwfiles <-
list(
k4_naive = list.files(bwdir, pattern = "H3K4m3_H9_Ni_rep[1-3].hg38.scaled.bw", full.names = T),
k4_naive_ezh2i = list.files(bwdir, pattern = "H3K4m3_H9_Ni-EZH2i_rep[1-3].hg38.scaled.bw", full.names = T),
k4_primed = list.files(bwdir, pattern = "H3K4m3_H9_Pr_rep[1-3].hg38.scaled.bw", full.names = T),
k4_primed_ezh2i = list.files(bwdir, pattern = "H3K4m3_H9_Pr-EZH2i_rep[1-3].hg38.scaled.bw", full.names = T),
k27_naive = list.files(bwdir, pattern = "H3K27m3_H9_Ni_rep[1-3].hg38.scaled.bw", full.names = T),
k27_primed = list.files(bwdir, pattern = "H3K27m3_H9_Pr_rep[1-3].hg38.scaled.bw", full.names = T),
ub_naive = list.files(bwdir, pattern = "H2Aub_H9_Ni_rep[1-3].hg38.scaled.bw", full.names = T),
ub_naive_ezh2i = list.files(bwdir, pattern = "H2Aub_H9_Ni-EZH2i_rep[1-3].hg38.scaled.bw", full.names = T),
ub_primed = list.files(bwdir, pattern = "H2Aub_H9_Pr_rep[1-3].hg38.scaled.bw", full.names = T),
ub_primed_ezh2i = list.files(bwdir, pattern = "H2Aub_H9_Pr-EZH2i_rep[1-3].hg38.scaled.bw", full.names = T),
in_naive = list.files(bwdir, pattern = "IN_H9_Ni.*rep[1-3].hg38.*.bw", full.names = T),
in_naive_ezh2i = list.files(bwdir, pattern = "IN_H9_Ni-EZH2i.*rep[1-3].hg38.*.bw", full.names = T),
in_primed = list.files(bwdir, pattern = "IN_H9_Pr_rep[1-3].hg38.*.bw", full.names = T),
in_primed_ezh2i = list.files(bwdir, pattern = "IN_H9_Pr-EZH2i.*rep[1-3].hg38.*.bw", full.names = T)
)
bwfiles_pooled <-
list(
k4 = list.files(bwdir, pattern = "H3K4m3.*pooled.hg38.scaled.*", full.names = T),
k27 = list.files(bwdir, pattern = "H3K27m3.*pooled.hg38.scaled.*", full.names = T),
ub = list.files(bwdir, pattern = "H2Aub.*pooled.hg38.scaled.*", full.names = T),
input = list.files(bwdir, pattern = "IN.*pooled.hg38.*", full.names = T)
)
sorted_colors <- unname(c(gl_condition_colors["Naive_Untreated"],
gl_condition_colors["Naive_EZH2i"],
gl_condition_colors["Primed_Untreated"],
gl_condition_colors["Primed_EZH2i"]))
grey_colors <- c("#cccccc", "#aaaaaa", "#888888", "#555555")
At this point kept area around TSS the same size even though K4 is narrower, so it’s fairer to put them all in the same table.
pooled_k4 <- bw_loci(bwfiles_pooled$k4, genes_tss_broad, labels = gsub("_pooled.hg38.scaled.bw", "", basename(bwfiles_pooled$k4)))
pooled_k27 <- bw_loci(bwfiles_pooled$k27, genes_tss_broad, labels = gsub("_pooled.hg38.scaled.bw", "", basename(bwfiles_pooled$k27)))
pooled_h2aub <- bw_loci(bwfiles_pooled$k27, genes_tss_broad, labels = gsub("_pooled.hg38.scaled.bw", "", basename(bwfiles_pooled$ub)))
pooled_inp <- bw_loci(bwfiles_pooled$input, genes_tss_broad, labels = gsub("_pooled.hg38.unscaled.bw", "", basename(bwfiles_pooled$input)))
merge_by_name <- function(lociset) {
mcols_df <- function(gr) { data.frame(mcols(gr)) }
dfs <- lapply(lociset, mcols_df)
dfs %>% reduce(full_join, by = "name")
}
pooled_df <- merge_by_name(list(pooled_k4, pooled_k27, pooled_h2aub, pooled_inp))
master_df <- pooled_df
c1 <- bw_loci(bwfiles$k27_naive, genes_tss_broad)
c2 <- bw_loci(bwfiles$k27_primed, genes_tss_broad)
diff <- bw_granges_diff_analysis(c1, c2, "Naive", "Primed", estimate_size_factors = FALSE)
diff_lfc <- lfcShrink(diff, coef="condition_Primed_vs_Naive", type="apeglm")
plotMA(diff_lfc)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
#
make_diff_df <- function(diff_lfc, prefix) {
df_diff <- data.frame(diff_lfc)
# DS stands for DeSeq
colnames(df_diff) <- paste(prefix, colnames(df_diff), sep = "_")
df_diff$name <- rownames(df_diff)
df_diff
}
df_diff <- make_diff_df(diff_lfc, "H3K27m3_DS_Pr_vs_Ni")
master_df <- left_join(master_df, df_diff, by = "name")
These are skipped, as EZH2i treatment wipes all H3K27me3 so it does not make any sense to do the differential analysis in this context.
c1 <- bw_loci(bwfiles$k4_naive, genes_tss_narrow)
c2 <- bw_loci(bwfiles$k4_primed, genes_tss_narrow)
diff <- bw_granges_diff_analysis(c1, c2, "Naive", "Primed", estimate_size_factors = FALSE)
diff_lfc <- lfcShrink(diff, coef="condition_Primed_vs_Naive", type="apeglm")
# diff <- results(diff, alpha = params$pval_cutoff)
#
plotMA(diff_lfc)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
df_diff <- make_diff_df(diff_lfc, "H3K4m3_DS_Pr_vs_Ni")
master_df <- left_join(master_df, df_diff, by = "name")
c1 <- bw_loci(bwfiles$k4_naive, genes_tss_narrow)
c2 <- bw_loci(bwfiles$k4_naive_ezh2i, genes_tss_narrow)
diff <- bw_granges_diff_analysis(c1, c2, "Naive", "EZH2i", estimate_size_factors = FALSE)
diff_lfc <- lfcShrink(diff, coef="condition_EZH2i_vs_Naive", type="apeglm")
plotMA(diff_lfc)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
df_diff <- make_diff_df(diff_lfc, "H3K4m3_DS_EZH2i_vs_Ni")
master_df <- left_join(master_df, df_diff, by = "name")
c1 <- bw_loci(bwfiles$k4_primed, genes_tss_narrow)
c2 <- bw_loci(bwfiles$k4_primed_ezh2i, genes_tss_narrow)
diff <- bw_granges_diff_analysis(c1, c2, "Primed", "EZH2i", estimate_size_factors = FALSE)
diff_lfc <- lfcShrink(diff, coef="condition_EZH2i_vs_Primed", type="apeglm")
plotMA(diff_lfc)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
df_diff <- make_diff_df(diff_lfc, "H3K4m3_DS_EZH2i_vs_Pr")
master_df <- left_join(master_df, df_diff, by = "name")
c1 <- bw_loci(bwfiles$ub_naive, genes_tss_broad)
c2 <- bw_loci(bwfiles$ub_primed, genes_tss_broad)
diff <- bw_granges_diff_analysis(c1, c2, "Naive", "Primed", estimate_size_factors = FALSE)
diff_lfc <- lfcShrink(diff, coef="condition_Primed_vs_Naive", type="apeglm")
plotMA(diff_lfc)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
df_diff <- make_diff_df(diff_lfc, "H2Aub_DS_Pr_vs_Ni")
master_df <- left_join(master_df, df_diff, by = "name")
c1 <- bw_loci(bwfiles$ub_naive, genes_tss_broad)
c2 <- bw_loci(bwfiles$ub_naive_ezh2i, genes_tss_broad)
diff <- bw_granges_diff_analysis(c1, c2, "Naive", "EZH2i", estimate_size_factors = FALSE)
diff_lfc <- lfcShrink(diff, coef="condition_EZH2i_vs_Naive", type="apeglm")
plotMA(diff_lfc)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
df_diff <- make_diff_df(diff_lfc, "H2Aub_DS_EZH2i_vs_Ni")
master_df <- left_join(master_df, df_diff, by = "name")
c1 <- bw_loci(bwfiles$ub_primed, genes_tss_broad)
c2 <- bw_loci(bwfiles$ub_primed_ezh2i, genes_tss_broad)
diff <- bw_granges_diff_analysis(c1, c2, "Primed", "EZH2i", estimate_size_factors = FALSE)
diff_lfc <- lfcShrink(diff, coef="condition_EZH2i_vs_Primed", type="apeglm")
plotMA(diff_lfc)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
df_diff <- make_diff_df(diff_lfc, "H2Aub_DS_EZH2i_vs_Pr")
master_df <- left_join(master_df, df_diff, by = "name")
columns <- colnames(master_df)
order <- c("name", sort(columns[!(columns %in% "name")]))
write.table(
format(master_df[, order], digits = 4),
file = "./data/meta/Kumar_2020_master_gene_table_histones.tsv",
sep = "\t",
col.names = T,
quote = F,
row.names = F
)
ni_pr_diff <- ni_pr_expression_analysis(params$datadir)
plotMA(ni_pr_diff)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
ni_ezh2i_diff <- ni_ezh2i_expression_analysis(params$datadir)
plotMA(ni_ezh2i_diff)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
pr_ezh2i_diff <- pr_ezh2i_expression_analysis(params$datadir)
plotMA(pr_ezh2i_diff)
Version | Author | Date |
---|---|---|
58564ac | cnluzon | 2021-05-26 |
make_df <- function(diffres, name_suffix) {
df <- data.frame(diffres)
colnames(df) <- paste(colnames(df), name_suffix, sep = "_")
df$gene <- rownames(df)
df
}
dfs <- list(make_diff_df(ni_pr_diff, "RNASeq_DS_Pr_vs_Ni"),
make_diff_df(ni_ezh2i_diff, "RNASeq_DS_EZH2i_vs_Ni"),
make_diff_df(pr_ezh2i_diff, "RNASeq_DS_EZH2i_vs_Pr"))
expr_results_all <- reduce(dfs, full_join, by = "name")
columns <- colnames(expr_results_all)
order <- c("name", sort(columns[!(columns %in% "name")]))
write.table(
format(expr_results_all[, order], digits = 4),
file = "./data/meta/Kumar_2020_master_gene_table_expression.tsv",
sep = "\t",
col.names = T,
quote = F,
row.names = F
)
final <- full_join(master_df, expr_results_all, by = "name")
# Add TSS broad coords
loci <- data.frame(genes_tss_broad)
final <- full_join(final, loci, by = "name")
columns <- colnames(final)
order <-
c(c("name", "seqnames", "start", "end", "strand"),
sort(columns[!(columns %in% c("name", "seqnames", "start", "end", "strand"))]))
write.table(
format(final[, order], digits = 4),
file = "./data/meta/Kumar_2020_master_gene_table.tsv",
sep = "\t",
col.names = T,
quote = F,
row.names = F
)
sessionInfo()
R version 4.1.0 (2021-05-18)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 20.04.2 LTS
Matrix products: default
BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=sv_SE.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=sv_SE.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=sv_SE.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=sv_SE.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats4 parallel stats graphics grDevices utils datasets
[8] methods base
other attached packages:
[1] biomaRt_2.48.0
[2] DESeq2_1.32.0
[3] SummarizedExperiment_1.22.0
[4] MatrixGenerics_1.4.0
[5] matrixStats_0.58.0
[6] tidyr_1.1.3
[7] cowplot_1.1.1
[8] xfun_0.23
[9] dplyr_1.0.6
[10] purrr_0.3.4
[11] rtracklayer_1.52.0
[12] org.Hs.eg.db_3.13.0
[13] TxDb.Hsapiens.UCSC.hg38.knownGene_3.13.0
[14] GenomicFeatures_1.44.0
[15] AnnotationDbi_1.54.0
[16] Biobase_2.52.0
[17] GenomicRanges_1.44.0
[18] GenomeInfoDb_1.28.0
[19] IRanges_2.26.0
[20] S4Vectors_0.30.0
[21] BiocGenerics_0.38.0
[22] knitr_1.33
[23] ggplot2_3.3.3
[24] wigglescout_0.13.1
[25] workflowr_1.6.2
loaded via a namespace (and not attached):
[1] colorspace_2.0-1 rjson_0.2.20 ellipsis_0.3.2
[4] rprojroot_2.0.2 XVector_0.32.0 fs_1.5.0
[7] listenv_0.8.0 furrr_0.2.2 bit64_4.0.5
[10] mvtnorm_1.1-1 apeglm_1.14.0 fansi_0.5.0
[13] xml2_1.3.2 splines_4.1.0 codetools_0.2-18
[16] cachem_1.0.5 geneplotter_1.70.0 jsonlite_1.7.2
[19] Rsamtools_2.8.0 annotate_1.70.0 dbplyr_2.1.1
[22] png_0.1-7 compiler_4.1.0 httr_1.4.2
[25] assertthat_0.2.1 Matrix_1.3-3 fastmap_1.1.0
[28] later_1.2.0 htmltools_0.5.1.1 prettyunits_1.1.1
[31] tools_4.1.0 coda_0.19-4 gtable_0.3.0
[34] glue_1.4.2 GenomeInfoDbData_1.2.6 reshape2_1.4.4
[37] rappdirs_0.3.3 Rcpp_1.0.6 bbmle_1.0.23.1
[40] jquerylib_0.1.4 vctrs_0.3.8 Biostrings_2.60.0
[43] stringr_1.4.0 globals_0.14.0 lifecycle_1.0.0
[46] restfulr_0.0.13 XML_3.99-0.6 future_1.21.0
[49] MASS_7.3-54 zlibbioc_1.38.0 scales_1.1.1
[52] hms_1.1.0 promises_1.2.0.1 RColorBrewer_1.1-2
[55] yaml_2.2.1 curl_4.3.1 memoise_2.0.0
[58] emdbook_1.3.12 sass_0.4.0 bdsmatrix_1.3-4
[61] stringi_1.6.2 RSQLite_2.2.7 highr_0.9
[64] genefilter_1.74.0 BiocIO_1.2.0 filelock_1.0.2
[67] BiocParallel_1.26.0 rlang_0.4.11 pkgconfig_2.0.3
[70] bitops_1.0-7 evaluate_0.14 lattice_0.20-44
[73] GenomicAlignments_1.28.0 bit_4.0.4 tidyselect_1.1.1
[76] parallelly_1.25.0 plyr_1.8.6 magrittr_2.0.1
[79] R6_2.5.0 generics_0.1.0 DelayedArray_0.18.0
[82] DBI_1.1.1 pillar_1.6.1 whisker_0.4
[85] withr_2.4.2 survival_3.2-11 KEGGREST_1.32.0
[88] RCurl_1.98-1.3 tibble_3.1.2 crayon_1.4.1
[91] utf8_1.2.1 BiocFileCache_2.0.0 rmarkdown_2.8
[94] progress_1.2.2 locfit_1.5-9.4 grid_4.1.0
[97] blob_1.2.1 git2r_0.28.0 digest_0.6.27
[100] xtable_1.8-4 numDeriv_2016.8-1.1 httpuv_1.6.1
[103] munsell_0.5.0 bslib_0.2.5.1