blob: 0f84d8e6c66e310fd9f834ae9b6273bd967dfd64 (
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
|
# system requirements: C++11
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=sctransform
_pkgver=0.4.1
pkgname=r-${_pkgname,,}
pkgver=0.4.1
pkgrel=1
pkgdesc='Variance Stabilizing Transformations for Single Cell UMI Data'
arch=('x86_64')
url="https://cran.r-project.org/package=${_pkgname}"
license=('GPL')
depends=(
gcc
r
r-dplyr
r-future
r-future.apply
r-ggplot2
r-gridextra
r-magrittr
r-matrixstats
r-rcpp
r-rcpparmadillo
r-reshape2
r-rlang
)
optdepends=(
r-glmgampoi
r-irlba
r-knitr
r-testthat
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
sha256sums=('5f6be7f8be543e4c32c8007207b603a750881459370b7bb5afd63e8c8fabf171')
build() {
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
}
package() {
install -dm0755 "${pkgdir}/usr/lib/R/library"
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
}
# vim:set ts=2 sw=2 et:
|