Skip to content

Commit

Permalink
install additional packages
Browse files Browse the repository at this point in the history
  • Loading branch information
wbaopaul committed Nov 27, 2019
1 parent 7bbacfb commit 68bf898
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure_user.txt
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ SPLIT_BAM2CLUSTER = TRUE
#######################################
## TF footprinting analysis ##
#######################################
DO_FOOTPRINT = TRUE
DO_FOOTPRINT = FALSE

## comparing two clusters:
cluster1_fp = 0 ## cluster name
Expand Down
7 changes: 6 additions & 1 deletion scripts/install/Docker/install_Rpackages_docker.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for(pk in pks){
}
}

bioc.pks = c('RColorBrewer','pheatmap','motifmatchr', 'chromVAR', 'SummarizedExperiment', 'BiocParallel', 'DESeq2', 'edgeR', 'matrixStats', 'cicero', 'farver')
bioc.pks = c('RColorBrewer','pheatmap','motifmatchr', 'chromVAR', 'SummarizedExperiment', 'BiocParallel', 'DESeq2', 'edgeR', 'matrixStats', 'cicero', 'farver', 'org.Mm.eg.db', 'org.hs.eg.db', 'BSgenome.Hsapiens.UCSC.hg38', 'BSgenome.Hsapiens.UCSC.hg19', 'BSgenome.Mmusculus.UCSC.mm10', 'BSgenome.Mmusculus.UCSC.mm9', 'clusterProfiler')

for(pk in bioc.pks){
if(!require(pk, character.only = T)) {
Expand All @@ -27,3 +27,8 @@ if(!require(chromVARmotifs)) {
message(paste('Install chromVARmotifs...'))
devtools::install_github("GreenleafLab/chromVARmotifs", upgrade = 'never', force = T)
}

if(!require(cisTopic)) {
message(paste('Install cisTopic...'))
devtools::install_github("aertslab/cisTopic", upgrade = 'never', force = T)
}
2 changes: 1 addition & 1 deletion scripts/install/install_Rpackages.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for(pk in pks){
}
}

bioc.pks = c('RColorBrewer','pheatmap','motifmatchr', 'chromVAR', 'SummarizedExperiment', 'BiocParallel', 'DESeq2', 'edgeR', 'matrixStats', 'cicero', 'farver')
bioc.pks = c('RColorBrewer','pheatmap','motifmatchr', 'chromVAR', 'SummarizedExperiment', 'BiocParallel', 'DESeq2', 'edgeR', 'matrixStats', 'cicero', 'farver', 'BSgenome.Hsapiens.UCSC.hg38', 'clusterProfiler')

for(pk in bioc.pks){
if(!require(pk, character.only = T)) {
Expand Down

0 comments on commit 68bf898

Please sign in to comment.