-
Notifications
You must be signed in to change notification settings - Fork 10
/
env.scm
24 lines (24 loc) · 1.09 KB
/
env.scm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;; For a persistent profile with development packages use
;; guix package -p dev -m env.scm
(use-modules (guix packages))
(packages->manifest
(append (map cadr (package-direct-inputs
(specification->package "pigx-chipseq")))
(map specification->package '("autoconf" "automake"))
;; additional dependencies
(map specification->package '("r-rsubread" "samblaster"))
;; add pacages for Deseq Report
(map specification->package '(
"r-ggrepel"
"r-deseq2"
"r-dt"
"r-pheatmap"
"r-corrplot"
"r-reshape2"
"r-scales"
"r-crosstalk"
"r-gprofiler2"
"r-summarizedexperiment"
"r-hexbin"
))
))