blob: 37063c323e840ee57ede6af852afe2268b6a9db7 (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=isomiRs
_pkgver=1.34.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Analyze isomiRs and miRNAs from small RNA-seq"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('MIT')
depends=(
r-annotationdbi
r-biobase
r-biocgenerics
r-broom
r-cowplot
r-degreport
r-deseq2
r-dplyr
r-genomicranges
r-ggally
r-ggplot2
r-gplots
r-gridextra
r-gtools
r-iranges
r-limma
r-rcolorbrewer
r-readr
r-reshape
r-rlang
r-s4vectors
r-stringr
r-summarizedexperiment
r-tibble
r-tidyr
)
optdepends=(
r-biocstyle
r-knitr
r-org.mm.eg.db
r-pheatmap
r-rmarkdown
r-targetscan.hs.eg.db
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('5664da8911aadc6a0c16a81710f3b9dc')
b2sums=('31fa76840d56fe9f7d95e78195055d15c4b218a50b660547939865575031539aede4032772610d063e43cdbc3bbf088a6d7a165ad85809149948f7219bcad3d7')
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"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|