blob: e785ca42d4fadd97f65be25f998bd3a34bf07152 (
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=scFeatures
_pkgver=1.6.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Multi-view representations of single-cell and spatial data for disease outcome prediction"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-3.0-only')
depends=(
r-ape
r-aucell
r-biocparallel
r-cli
r-delayedarray
r-delayedmatrixstats
r-dplyr
r-dt
r-ensdb.hsapiens.v79
r-ensdb.mmusculus.v79
r-ensembldb
r-glue
r-gsva
r-gtools
r-matrixgenerics
r-msigdbr
r-proxyc
r-reshape2
r-rmarkdown
r-seurat
r-singlecellsignalr
r-spatstat.explore
r-spatstat.geom
r-tidyr
)
optdepends=(
r-biocstyle
r-classifyr
r-clusterprofiler
r-knitr
r-org.hs.eg.db
r-s4vectors
r-survminer
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('df5ae072515e820cc5027911aae2e49a')
b2sums=('5af49d6be9310669427ce5ff1c7fd38f21e844aede832fcf873e4ab30f07aaa225dec3f21e30ada0b9c72add8e0edbc4444136f5ad587a32d1812c6fd47c051d')
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"
}
|