summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-methylcode/package.py
blob: 131e9e1243a7ee7e2b352fab281f65e428564249 (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
# Copyright 2013-2021 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 PyMethylcode(PythonPackage):
    """MethylCoder is a single program that takes of bisulfite-treated
       reads and outputs per-base methylation data. """

    homepage = "https://github.com/brentp/methylcode"
    git      = "https://github.com/brentp/methylcode.git"

    version('master', branch='master', deprecated=True)

    depends_on('python@2.6:2.8', type=('build', 'run'))
    depends_on('py-setuptools', type='build')
    depends_on('py-numpy')
    depends_on('py-pyfasta')
    depends_on('py-bsddb3')
    depends_on('bowtie')