2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-08-11 06:56:20 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2017-08-11 06:56:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Gblocks(Package):
|
|
|
|
"""Gblocks is a computer program written in ANSI C language that eliminates
|
|
|
|
poorly aligned positions and divergent regions of an alignment of DNA or
|
|
|
|
protein sequences"""
|
|
|
|
|
|
|
|
homepage = "http://molevol.cmima.csic.es/castresana/Gblocks.html"
|
|
|
|
url = "http://molevol.cmima.csic.es/castresana/Gblocks/Gblocks_Linux64_0.91b.tar.Z"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.91b', sha256='563658f03cc5e76234a8aa705bdc149398defec813d3a0c172b5f94c06c880dc')
|
2017-08-11 06:56:20 +08:00
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
mkdirp(prefix.bin)
|
|
|
|
install('Gblocks', prefix.bin)
|