blob: cf9a57c9c805598da124e2a88dd82176eaa5766f (
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
66
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=ClassifyR
_pkgver=3.10.0
pkgname=r-${_pkgname,,}
pkgver=3.10.0
pkgrel=1
pkgdesc='A framework for cross-validated classification problems, with applications to differential variability and differential distribution testing'
arch=('x86_64')
url="https://bioconductor.org/packages/${_pkgname}"
license=('GPL')
depends=(
r
r-biocparallel
r-dplyr
r-genefilter
r-generics
r-ggplot2
r-ggpubr
r-ggupset
r-multiassayexperiment
r-ranger
r-reshape2
r-rlang
r-s4vectors
r-tidyr
)
optdepends=(
r-biocstyle
r-car
r-class
r-cowplot
r-data.tree
r-e1071
r-edger
r-ggnewscale
r-glmnet
r-gridextra
r-gtable
r-htmltools
r-iranges
r-knitr
r-limma
r-matrixmodels
r-pamr
r-parathyroidse
r-poiclaclu
r-randomforestsrc
r-rmarkdown
r-rmixmod
r-robustbase
r-scales
r-xgboost
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
sha256sums=('cbf86026aa31d314f074ac82043f5ef7ef508bcf912ebb825071395e275af7df')
build() {
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
}
package() {
install -dm0755 "${pkgdir}/usr/lib/R/library"
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
}
# vim:set ts=2 sw=2 et:
|