summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pipits/package.py
blob: beef939772db6865b7da4f66bdd38183ee8675f8 (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
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
# 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 PyPipits(PythonPackage):
    """Automated pipeline for analyses of fungal ITS from the Illumina"""

    homepage = "https://github.com/hsgweon/pipits"
    url      = "https://github.com/hsgweon/pipits/archive/1.5.0.tar.gz"

    version('1.5.0', '3f9b52bd7ffbcdb96d7bec150275070a')

    depends_on('python@:2.999', type=('build', 'run'))
    depends_on('py-biom-format', type=('build', 'run'))
    depends_on('py-numpy', type=('build', 'run'))
    depends_on('java', type=('build', 'run'))
    depends_on('hmmer')
    depends_on('fastx-toolkit')
    depends_on('vsearch')
    depends_on('itsx')
    depends_on('rdp-classifier')

    resource(
        name='UNITE_retrained',
        url='http://sourceforge.net/projects/pipits/files/UNITE_retrained_28.06.2017.tar.gz',
        destination='refdb'
    )

    resource(
        name='uchime_reference_dataset_01.01.2016.fasta',
        url='https://unite.ut.ee/sh_files/uchime_reference_dataset_01.01.2016.zip',
        destination=join_path('refdb', 'uchime_reference_dataset_01.01.2016')
    )

    resource(
        name='warcup_retrained_V2',
        url='https://sourceforge.net/projects/pipits/files/warcup_retrained_V2.tar.gz',
        destination='refdb'
    )

    @run_after('install')
    def install_db(self):
        install_tree(join_path(self.stage.source_path, 'refdb'),
                     self.prefix.refdb)

    def setup_environment(self, spack_env, run_env):
        run_env.set('PIPITS_UNITE_REFERENCE_DATA_CHIMERA', join_path(
                    self.prefix, 'refdb',
                    'uchime_reference_dataset_01.01.2016',
                    'uchime_reference_dataset_01.01.2016.fasta'))
        run_env.set('PIPITS_UNITE_RETRAINED_DIR',
                    self.prefix.refdb.UNITE_retrained)
        run_env.set('PIPITS_WARCUP_RETRAINED_DIR',
                    self.prefix.refdb.warcup_retrained_V2)
        run_env.set('PIPITS_RDP_CLASSIFIER_JAR', join_path(
                    self.spec['rdp-classifier'].prefix.bin,
                    'classifier.jar'))