summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/falcon/package.py
blob: 85d130a1d27a9e76cff400b9846325f05f15787d (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
# Copyright 2013-2018 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 Falcon(PythonPackage):
    """Falcon: a set of tools for fast aligning long reads for consensus
    and assembly.

    The Falcon tool kit is a set of simple code collection which I use
    for studying efficient assembly algorithm for haploid and diploid genomes.
    It has some back-end code implemented in C for speed and some simple
    front-end written in Python for convenience."""

    homepage = "https://github.com/PacificBiosciences/FALCON"
    git      = "https://github.com/PacificBiosciences/FALCON.git"

    version('2017-05-30', commit='86cec6157291679095ea6080b0cde6561eccc041')

    depends_on('py-setuptools', type='run')
    depends_on('py-pypeflow', type='run')
    depends_on('py-networkx@1.7:1.10', type=['build', 'run'])
    depends_on('pacbio-dazz-db', type='run')
    depends_on('pacbio-daligner', type='run')
    depends_on('pacbio-dextractor', type='run')
    depends_on('pacbio-damasker', type='run')