blob: 872fec6772607bc5e64b32414f569f45eba58839 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=sSNAPPY
_pkgver=1.8.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Single Sample directioNAl Pathway Perturbation analYsis"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-3.0-only')
depends=(
r-dplyr
r-edger
r-ggforce
r-ggplot2
r-ggraph
r-graphite
r-gtools
r-igraph
r-magrittr
r-org.hs.eg.db
r-pheatmap
r-reshape2
r-rlang
r-stringr
r-summarizedexperiment
r-tibble
r-tidyr
)
checkdepends=(
r-cowplot
r-testthat
)
optdepends=(
r-biocmanager
r-biocstyle
r-colorspace
r-cowplot
r-dt
r-htmltools
r-knitr
r-pander
r-patchwork
r-rmarkdown
r-spelling
r-testthat
r-tidyverse
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('21fc7c8f3f9568dd674a0258e832e73a')
b2sums=('e59956773f9de786890c1450839b6a020bf2f6304bf675c3285fc03621742d8092bda5f53a658e7c5cede81a77ef9228fc0377945ea01e29692be40e1902e197')
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"
}
|