new package: r-mutoss (#21117)

Designed to ease the application and comparison of multiple hypothesis
testing procedures for FWER, gFWER, FDR and FDX. Methods are
standardized and usable by the accompanying 'mutossGUI'.
This commit is contained in:
Glenn Johnson
2021-01-18 12:53:53 -06:00
committed by GitHub
parent 5a42df5944
commit ca9e103994

View File

@@ -0,0 +1,26 @@
# 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 RMutoss(RPackage):
"""Unified Multiple Testing Procedures
Designed to ease the application and comparison of multiple hypothesis
testing procedures for FWER, gFWER, FDR and FDX. Methods are standardized
and usable by the accompanying 'mutossGUI'."""
homepage = "https://github.com/kornl/mutoss/"
url = "https://cloud.r-project.org/src/contrib/mutoss_0.1-12.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/mutoss"
version('0.1-12', sha256='2889ae3d502157592697124eb86adc14911e2b7fdaa7204743a376b1eeb967fa')
depends_on('r@2.10.0:', type=('build', 'run'))
depends_on('r-mvtnorm', type=('build', 'run'))
depends_on('r-plotrix', type=('build', 'run'))
depends_on('r-multtest@2.2.0:', type=('build', 'run'))
depends_on('r-multcomp@1.1-0:', type=('build', 'run'))