
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
27 lines
1.0 KiB
Python
27 lines
1.0 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 RdpClassifier(Package, SourceforgePackage):
|
|
"""The RDP Classifier is a naive Bayesian classifier that can rapidly and
|
|
accurately provides taxonomic assignments from domain to genus, with
|
|
confidence estimates for each assignment. """
|
|
|
|
homepage = "http://rdp.cme.msu.edu/"
|
|
sourceforge_mirror_path = "rdp-classifier/rdp_classifier_2.12.zip"
|
|
|
|
version('2.12', sha256='977896248189a1ce2146dd3a61d203c3c6bc9aa3982c60332d463832922f7d0a')
|
|
|
|
depends_on('java', type=('build', 'run'))
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
install(join_path('dist', 'classifier.jar'), prefix.bin)
|
|
install_tree(join_path('dist', 'lib'), prefix.bin.lib)
|
|
install(join_path('lib', 'junit-4.8.2.jar'), prefix.bin.lib)
|
|
install_tree('src', prefix.src)
|