summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fermi/package.py
blob: 2c4693107d22c69134859a618923e324cba3803b (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-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 Fermi(MakefilePackage):
    """A WGS de novo assembler based on the FMD-index for large genomes."""

    homepage = "https://github.com/lh3/fermi"
    url      = "https://github.com/downloads/lh3/fermi/fermi-1.1.tar.bz2"

    version('1.1', 'd5f006315652b6f18070b31474ca5ebb')

    depends_on('zlib')
    depends_on('perl', type='run')

    def install(self, spec, prefix):
        mkdir(prefix.bin)
        install('fermi', prefix.bin)
        install('run-fermi.pl', prefix.bin)