blob: f0ca6e89a6f306c3105200b40be6e8e3957e1e42 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=DAPAR
_pkgver=1.36.3
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Tools for the Differential Analysis of Proteins Abundance with R"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-biobase
r-dapardata
r-foreach
r-highcharter
r-msnbase
)
checkdepends=(
r-imp4p
r-testthat
)
optdepends=(
r-annotationdbi
r-apcluster
r-biocstyle
r-clusterprofiler
r-cp4p
r-dendextend
r-diptest
r-doparallel
r-dplyr
r-factoextra
r-factominer
r-forcats
r-ggplot2
r-gplots
r-graph
r-igraph
r-imp4p
r-impute
r-knitr
r-limma
r-lme4
r-mfuzz
r-multcomp
r-norm
r-openxlsx
r-org.sc.sgd.db
r-preprocesscore
r-purrr
r-rcolorbrewer
r-readxl
r-reshape2
r-scales
r-stringr
r-testthat
r-tibble
r-tidyr
r-tidyverse
r-vioplot
r-visnetwork
r-vsn
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('0fd4428c31b7cea7f6948a2b79e25ba1')
b2sums=('22d0262a3e5ef775246e3304949553cbb7f8cab7211eced02a0c6253d3ecffb963121481091e99489853bf482af3cf742a016acb6bf369608a595bb764c40502')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
check() {
cd "$_pkgname/tests"
R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla testthat.R
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
}
|