
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Copyright 2013-2019 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 Tppred(Package):
|
|
"""TPPRED is a software package for the prediction of mitochondrial
|
|
targeting peptides from protein primary sequence."""
|
|
|
|
homepage = "https://tppred2.biocomp.unibo.it/tppred2/default/software"
|
|
url = "http://biocomp.unibo.it/savojard/tppred2.tar.gz"
|
|
|
|
version('2.0', sha256='0e180d5ce1f0bccfdbc3dbf9981b3fbe2101c85491c58c58c88856861688a4f5')
|
|
|
|
depends_on('python@2.7:2.999', type='run')
|
|
depends_on('py-scikit-learn@0.13.1', type='run')
|
|
depends_on('emboss')
|
|
|
|
def url_for_version(self, version):
|
|
url = 'http://biocomp.unibo.it/savojard/tppred{0}.tar.gz'
|
|
return url.format(version.up_to(1))
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
with working_dir('bin'):
|
|
install('tppred2.py', prefix.bin)
|
|
install_tree('data', prefix.data)
|
|
install_tree('example', prefix.example)
|
|
install_tree('tppred2modules', prefix.modules)
|
|
|
|
def setup_environment(self, spack_env, run_env):
|
|
run_env.set('TPPRED_ROOT', prefix)
|