summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-acme/package.py
blob: c3d2e0a7fc1728c23bd0841cda11f9e7727c3621 (plain) (blame)
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
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class RAcme(RPackage):
    """Algorithms for Calculating Microarray Enrichment (ACME).

       ACME (Algorithms for Calculating Microarray Enrichment) is a set of
       tools for analysing tiling array ChIP/chip, DNAse hypersensitivity, or
       other experiments that result in regions of the genome showing
       "enrichment". It does not rely on a specific array technology (although
       the array should be a "tiling" array), is very general (can be applied
       in experiments resulting in regions of enrichment), and is very
       insensitive to array noise or normalization methods. It is also very
       fast and can be applied on whole-genome tiling array experiments quite
       easily with enough memory."""

    homepage = "https://bioconductor.org/packages/ACME"
    git      = "https://git.bioconductor.org/packages/ACME.git"

    version('2.40.0', commit='38499e512998d54d874a0bfdc173f4ba5de5f01a')
    version('2.38.0', commit='cd03196428e8adf62e84f25c4d4545429e2c908b')
    version('2.36.0', commit='39e056435b9775d35e7f7fc5446c2c3cafe15670')
    version('2.34.0', commit='1f53d43e420e245423fdf2711d0dcb345f829469')
    version('2.32.0', commit='76372255d7714a0c8128a11c028bf70214dac407')

    depends_on('r@2.10:', type=('build', 'run'))
    depends_on('r-biobase@2.5.5:', type=('build', 'run'))
    depends_on('r-biocgenerics', type=('build', 'run'))