blob: ccecb8e025b8a1f5b2d9a516cc40ff3a5c15333f (
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
|
# Maintainer: Charles Vejnar <first name [dot] last name [at] gmail [dot] com>
_pkgname=DESeq2
pkgname=r-${_pkgname,,}
pkgver=1.42.0
pkgrel=2
pkgdesc="Differential gene expression analysis based on the negative binomial distribution."
url="https://bioconductor.org/packages/DESeq2"
arch=("x86_64")
license=("LGPL3")
depends=('r'
'r-s4vectors'
'r-iranges'
'r-genomicranges'
'r-summarizedexperiment'
'r-biobase'
'r-biocgenerics'
'r-biocparallel'
'r-ggplot2'
'r-locfit'
'r-matrixstats'
'r-rcpp')
makedepends=('r-rcpparmadillo')
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${pkgver}.tar.gz")
sha256sums=('2af89dce722843a3824f9637419d98dae0052122b30e23b7fc811cca36d8e7d7')
package() {
mkdir -p "$pkgdir/usr/lib/R/library"
cd "$srcdir"
R CMD INSTALL -l "$pkgdir/usr/lib/R/library" ./${_pkgname}
}
|