From 47398f04bc38d218032bf32a4fff026221d1ee4b Mon Sep 17 00:00:00 2001 From: Beibei Chen <beibei.chen@utsouthwestern.edu> Date: Tue, 31 Jan 2017 12:27:29 -0600 Subject: [PATCH] Add new file --- env.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 env.md diff --git a/env.md b/env.md new file mode 100644 index 0000000..54176d8 --- /dev/null +++ b/env.md @@ -0,0 +1,17 @@ +## Create new env in specific folder +```shell +conda create -p /project/shared/bicf_workflow_ref/chipseq_bchen4/ -c r r-essentials +#Add channels +conda config --add channels conda-forge +conda config --add channels r +conda config --add channels bioconda +pip install --user twobitreader +conda install -c r r-xml +``` + +Install bioconductor in R console: +```R +source("http://bioconductor.org/biocLite.R") +biocLite() +biocLite(c("DiffBind","ChIPseeker")) +``` \ No newline at end of file -- GitLab