43 lines
1.5 KiB
Python
43 lines
1.5 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 *
|
|
import os
|
|
import glob
|
|
|
|
|
|
class GenemarkEt(Package):
|
|
"""Gene Prediction in Bacteria, archaea, Metagenomes and
|
|
Metatranscriptomes.
|
|
When downloaded this file is named the same for all versions.
|
|
Spack will search your current directory for the download file.
|
|
Alternatively, add this file to a mirror so that Spack can find it.
|
|
For instructions on how to set up a mirror, see
|
|
http://spack.readthedocs.io/en/latest/mirrors.html"""
|
|
|
|
homepage = "http://topaz.gatech.edu/GeneMark"
|
|
|
|
version('4.38', sha256='cee3bd73d331be44159eac15469560d0b07ffa2c98ac764c37219e1f3b7d3146')
|
|
version('4.33', '4ab7d7d3277a685dfb49e11bc5b493c3')
|
|
|
|
depends_on('perl', type=('build', 'run'))
|
|
|
|
def url_for_version(self, version):
|
|
return "file://{0}/gm_et_linux_64.tar.gz".format(os.getcwd())
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
mkdirp(prefix.bin.heu_dir)
|
|
with working_dir('gmes_petap'):
|
|
install_tree('lib', prefix.lib)
|
|
files = glob.iglob('*')
|
|
for file in files:
|
|
if os.path.isfile(file):
|
|
install(file, prefix.bin)
|
|
install_tree('heu_dir', prefix.bin.heu_dir)
|
|
|
|
def setup_environment(self, spack_env, run_env):
|
|
run_env.prepend_path('PERL5LIB', prefix.lib)
|