blob: 1b6873580a5588ff2e8832c4de6e5df013d681d6 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=MultiRNAflow
_pkgver=1.4.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="An R package for integrated analysis of temporal RNA-seq data with multiple biological conditions"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-3.0-only')
depends=(
r-biobase
r-complexheatmap
r-deseq2
r-factoextra
r-factominer
r-ggalluvial
r-ggplot2
r-ggplotify
r-ggrepel
r-gprofiler2
r-mfuzz
r-plot3d
r-plot3drgl
r-reshape2
r-s4vectors
r-summarizedexperiment
r-upsetr
)
checkdepends=(
r-testthat
)
optdepends=(
r-biocgenerics
r-biocstyle
r-e1071
r-knitr
r-rmarkdown
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('8f256be5013d735dbf6a5d2d0a258cf9')
b2sums=('8a7e8437ed57ed80699f0e58df3afb5e64323fdd5559465ce789b7e75cf6ca953be96591f50afedcf851e874dc9ce57c125b0855b9dd7993e0b04ecbd9a673fe')
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"
}
|