32 lines
1.5 KiB
Python
32 lines
1.5 KiB
Python
# 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 RPfamDb(RPackage):
|
|
"""A set of protein ID mappings for PFAM
|
|
|
|
A set of protein ID mappings for PFAM assembled using data from
|
|
public repositories."""
|
|
|
|
homepage = "https://www.bioconductor.org/packages/PFAM.db/"
|
|
url = "https://www.bioconductor.org/packages/3.5/data/annotation/src/contrib/PFAM.db_3.4.1.tar.gz"
|
|
|
|
version('3.12.0',
|
|
sha256='ec42d067522baf2d7d3ca78d4f8cc0dac08a4b98f1d890f52424e5d5b16f2fe9',
|
|
url='https://bioconductor.org/packages/3.12/data/annotation/src/contrib/PFAM.db_3.12.0.tar.gz')
|
|
version('3.10.0',
|
|
sha256='038888f95ce69230ac0e0b08aa3bcb09965682415520d437a7fb0a031eefe158',
|
|
url='https://bioconductor.org/packages/3.10/data/annotation/src/contrib/PFAM.db_3.10.0.tar.gz')
|
|
version('3.4.1',
|
|
sha256='fc45a0d53139daf85873f67bd3f1b68f2d883617f4447caddbd2d7dcc58a393f',
|
|
url='https://bioconductor.org/packages/3.5/data/annotation/src/contrib/PFAM.db_3.4.1.tar.gz')
|
|
|
|
depends_on('r@2.7.0:', when='@3.4.1:', type=('build', 'run'))
|
|
depends_on('r-annotationdbi@1.37.4:', when='@3.4.1:', type=('build', 'run'))
|
|
depends_on('r-annotationdbi@1.47.1:', when='@3.10.0:', type=('build', 'run'))
|
|
depends_on('r-annotationdbi@1.51.3:', when='@3.12.0:', type=('build', 'run'))
|