blob: 00879066a1a483405b5c7807af8187fc28a62019 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=SpliceWiz
_pkgver=1.6.3
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="interactive analysis and visualization of alternative splicing in R"
arch=(x86_64)
url="https://bioconductor.org/packages/$_pkgname"
license=('MIT')
depends=(
r-annotationhub
r-biocfilecache
r-biocgenerics
r-biocparallel
r-biostrings
r-bsgenome
r-data.table
r-delayedarray
r-delayedmatrixstats
r-dt
r-fst
r-genefilter
r-genomeinfodb
r-genomicranges
r-ggplot2
r-hdf5array
r-heatmaply
r-htmltools
r-iranges
r-magrittr
r-matrixstats
r-nxtirfdata
r-ompbam
r-patchwork
r-pheatmap
r-plotly
r-progress
r-r.utils
r-rcolorbrewer
r-rcpp
r-rhandsontable
r-rhdf5
r-rsqlite
r-rtracklayer
r-rvest
r-s4vectors
r-scales
r-shiny
r-shinydashboard
r-shinyfiles
r-shinywidgets
r-stringi
r-summarizedexperiment
zlib
)
makedepends=(
r-rcppprogress
)
checkdepends=(
r-rsubread
r-testthat
)
optdepends=(
r-annotationdbi
r-crayon
r-dbi
r-deseq2
r-doubleexpseq
r-edger
r-fgsea
r-go.db
r-knitr
r-limma
r-rmarkdown
r-rsubread
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz"
"link-zlib.patch")
md5sums=('59df999b983339da5b70837c68ef83ae'
'6d95a56e1b05ba50e118ddbbee00f1cf')
b2sums=('02f65f1a4c76894497a08b1c0932beea3e4674ee904988c3143da25b8b0c2c8b583498b9346ba147c173fb4a842477c029fa10f3ce9473517c76e7b19fa8ca14'
'c81190033eaba3e11043f9eb9ab2e0275b37a40ba6d5ad821a37560c74f3dc65a0fe3e0e9c4825fcc23e6bd9a7084ff0ba144daa6ef7b564517e4af2b4471362')
prepare() {
cd "$_pkgname"
# link to zlib
patch -Np1 -i ../link-zlib.patch
}
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"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|