24 lines
929 B
Python
24 lines
929 B
Python
# Copyright 2013-2020 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 RIlluminaio(RPackage):
|
|
"""Parsing Illumina Microarray Output Files.
|
|
|
|
Tools for parsing Illumina's microarray output files, including IDAT."""
|
|
|
|
homepage = "https://bioconductor.org/packages/illuminaio"
|
|
git = "https://git.bioconductor.org/packages/illuminaio.git"
|
|
|
|
version('0.26.0', commit='40c2f94df2ea64d745d25aadd2bfb33ac3e02f81')
|
|
version('0.24.0', commit='47953c77713c2da00a610f39308f86c5b44f6c59')
|
|
version('0.22.0', commit='dbd842340999569975ea593f47d70a729b3f68f2')
|
|
version('0.20.0', commit='d226628133b2396be9e7a6bf043f0309bd70c4ec')
|
|
version('0.18.0', commit='e6b8ab1f8eacb760aebdb4828e9cfbf07da06eda')
|
|
|
|
depends_on('r-base64', type=('build', 'run'))
|