blob: 3db09a9915af96280ae769f5fae5a92aa89f853a (
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.16.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=('f091133a6d86b9ae5114bbd3a96281bb')
b2sums=('422d6a764a23944f89631b958080ffe9eae3e65c456e59fc07372dfa307b4e61fa9c768098f9374a659855e09599e32c008f33433d67dddc80549ea2fddfb583')
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"
}
|