blob: 732641a17b199b780b3a6a013bc424decb393f0a (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=VariantAnnotation
_pkgver=1.54.1
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Annotation of Genetic Variants"
arch=(x86_64)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
bzip2
curl
r-annotationdbi
r-biobase
r-biocgenerics
r-biostrings
r-bsgenome
r-dbi
r-genomeinfodb
r-genomicfeatures
r-genomicranges
r-iranges
r-matrixgenerics
r-rsamtools
r-rtracklayer
r-s4vectors
r-summarizedexperiment
r-xvector
xz
zlib
)
makedepends=(
r-rhtslib
)
optdepends=(
r-annotationhub
r-biocstyle
r-bsgenome.hsapiens.ucsc.hg19
r-ggplot2
r-httr
r-jsonlite
r-knitr
r-magick
r-polyphen.hsapiens.dbsnp131
r-rjsoncons
r-runit
r-sift.hsapiens.dbsnp132
r-sift.hsapiens.dbsnp137
r-snplocs.hsapiens.dbsnp144.grch37
r-snpstats
r-txdb.hsapiens.ucsc.hg19.knowngene
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('fa87a1d665f6cc10417b53bf4f289b89')
b2sums=('f9e5f7c83eec22a298bf7cf9d28615a2f2f482ae265c9c45d6b44926a682ee1299ebd4a848e8446eddc688c6d8408d5d5513bc8e3a9611dcd9fa3644dd4a91fa')
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"
}
|