blob: cc415dfc54f4f81226d248b3f7384a3eb7d54a57 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=spatialHeatmap
_pkgver=2.6.2
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="spatialHeatmap"
arch=(any)
url="https://bioconductor.org/packages/${_pkgname}"
license=(Artistic2.0)
depends=(
r-data.table
r-dplyr
r-edger
r-genefilter
r-ggplot2
r-ggplotify
r-gplots
r-gridextra
r-grimport
r-igraph
r-reshape2
r-rsvg
r-s4vectors
r-scater
r-scran
r-scuttle
r-shiny
r-shinydashboard
r-singlecellexperiment
r-spscomps
r-summarizedexperiment
r-tibble
r-xml2
)
checkdepends=(
r-biocfilecache
r-biocgenerics
r-deseq2
r-expressionatlas
r-flashclust
r-runit
r-wgcna
)
optdepends=(
r-annotationdbi
r-av
r-biobase
r-biocfilecache
r-biocgenerics
r-biocparallel
r-biocsingular
r-biocstyle
r-cachem
r-dendextend
r-deseq2
r-distinct
r-dt
r-dynamictreecut
r-expressionatlas
r-flashclust
r-geoquery
r-ggdendro
r-hdf5array
r-htmltools
r-htmlwidgets
r-kableextra
r-knitr
r-limma
r-magick
r-memoise
r-org.at.tair.db
r-org.dm.eg.db
r-org.dr.eg.db
r-org.hs.eg.db
r-org.mm.eg.db
r-plotly
r-proc
r-rappdirs
r-rmarkdown
r-rols
r-rtsne
r-runit
r-seurat
r-shinybs
r-shinyjs
r-shinywidgets
r-sortable
r-sparkline
r-spsutil
r-upsetr
r-uwot
r-visnetwork
r-wgcna
r-yaml
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('5810ecc68ddddd26e70932ebf93ee364')
sha256sums=('f9222725e9ad80f6d19f96e5d77d49459c580495e42750cca9d7e041118df781')
build() {
mkdir -p build
R CMD INSTALL "$_pkgname" -l build
}
check() {
cd "$_pkgname/tests"
R_LIBS="$srcdir/build" Rscript --vanilla runTests.R
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
}
|