blob: c3c363166498ae1a908c268a42b08d748e2f03b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=RegEnrich
_pkgver=1.14.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Gene regulator enrichment analysis"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-2.0-or-later')
depends=(
r-biocparallel
r-biocset
r-biocstyle
r-deseq2
r-dose
r-dplyr
r-fgsea
r-ggplot2
r-limma
r-magrittr
r-randomforest
r-reshape2
r-s4vectors
r-summarizedexperiment
r-tibble
r-wgcna
)
optdepends=(
r-biocmanager
r-geoquery
r-knitr
r-rmarkdown
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('07903f981c9e50b0d7398e7b7a1e185b')
b2sums=('bfb2c9ec01a5e60f6b1ba9e15ff7b73daf2159ddb72317eaee3e2fb191277b04557fdc958fd5a766409db6b538f8e5a52e6cbfb5d71305eeffa00f71ef070db2')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
}
|