blob: 24bb63fa6b716a70bfd5e4fce7dd84857a301e9a (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=BatchQC
_pkgver=2.2.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Batch Effects Quality Control Software"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('MIT')
depends=(
r-data.table
r-deseq2
r-dplyr
r-ebseq
r-ggdendro
r-ggnewscale
r-ggplot2
r-limma
r-matrixstats
r-pheatmap
r-rcolorbrewer
r-reader
r-reshape2
r-scran
r-shiny
r-summarizedexperiment
r-sva
r-tibble
r-tidyr
r-tidyverse
r-shinythemes
r-s4vectors
r-shinyjs
)
optdepends=(
r-biocmanager
r-biocstyle
r-bladderbatch
r-devtools
r-knitr
r-lintr
r-plotly
r-rmarkdown
r-spelling
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('d0a36d52c86f8622c51921a5684684ef')
b2sums=('382219e84814dea1b736afc2bc94b7cee7113e96b6eb051f1ce8d9d0391c5991ef5abb248cda5a8ea2269808ed3dcc07962f77023045523482370414ee11f19f')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|