blob: 701b040708a28d112ef5bedc578347bbc31fec38 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=FuseSOM
_pkgver=1.8.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="A Correlation Based Multiview Self Organizing Maps Clustering For IMC Datasets"
arch=(x86_64)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-2.0-only')
depends=(
r-analogue
r-coop
r-diptest
r-fastcluster
r-fcps
r-fpc
r-ggplot2
r-ggplotify
r-ggpubr
r-pheatmap
r-proxy
r-psych
r-s4vectors
r-stringr
r-summarizedexperiment
)
makedepends=(
r-rcpp
)
optdepends=(
r-biocstyle
r-knitr
r-rmarkdown
r-singlecellexperiment
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('c3ce10f4ae9e1beeb75462de27e8c7ae')
b2sums=('4404537077382a63d7e5f4a1f57d529c5f36c38b74a805e44807e9d70e92b3105f297a45f2971a3dbb1ba662b407bc2f3d0f9b07a45864e8419d57b1482b2fe5')
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"
}
|