blob: 59c2ea9b37b826244321d6f79ad30b25616286f7 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=ENmix
_pkgver=1.44.1
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Quality control and analysis tools for Illumina DNA methylation BeadChip"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-annotationhub
r-biobase
r-doparallel
r-dynamictreecut
r-experimenthub
r-foreach
r-genefilter
r-geneplotter
r-gplots
r-gtools
r-illuminaio
r-impute
r-iranges
r-irlba
r-matrixstats
r-minfi
r-quadprog
r-rpmm
r-s4vectors
r-summarizedexperiment
)
checkdepends=(
r-biocgenerics
r-minfidata
r-runit
)
optdepends=(
r-biocgenerics
r-biocstyle
r-knitr
r-minfidata
r-rmarkdown
r-runit
)
source=("https://www.bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('34b8fa6195c3f3f637fcba9e99b765d2')
b2sums=('708e09d58b432045e3a70e23e00ec201ad5978af7c6db2abfc0cc29cfe997f11afd011bd69341b3919e9440ba9a119816cf67e4b18706e1628c0e0f07393f327')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
check() {
cd "$_pkgname/tests"
R_LIBS="$srcdir/build" Rscript --vanilla runTests.R
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
}
|