blob: 20a926090c60134a4a482b04e1bea2946397bf67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright 2013-2021 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 Clustalw(AutotoolsPackage):
"""Multiple alignment of nucleic acid and protein sequences."""
homepage = "http://www.clustal.org/clustal2/"
url = "http://www.clustal.org/download/2.1/clustalw-2.1.tar.gz"
version('2.1', sha256='e052059b87abfd8c9e695c280bfba86a65899138c82abccd5b00478a80f49486')
|