diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-16 08:20:26 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 15:20:26 +0100 |
commit | ad034af7dc61d50575e894f667d9b285b11ef13d (patch) | |
tree | acd0d8d1d13c0b7206b2931c1fbbf649aac29f08 | |
parent | 184fb792f5f2e947d5bc12eedd6d0e010ebacacd (diff) | |
download | spack-ad034af7dc61d50575e894f667d9b285b11ef13d.tar.gz spack-ad034af7dc61d50575e894f667d9b285b11ef13d.tar.bz2 spack-ad034af7dc61d50575e894f667d9b285b11ef13d.tar.xz spack-ad034af7dc61d50575e894f667d9b285b11ef13d.zip |
add version 0.4.12 to r-circlize (#20958)
-rw-r--r-- | var/spack/repos/builtin/packages/r-circlize/package.py | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/var/spack/repos/builtin/packages/r-circlize/package.py b/var/spack/repos/builtin/packages/r-circlize/package.py index b2f43c214c..14af2b7475 100644 --- a/var/spack/repos/builtin/packages/r-circlize/package.py +++ b/var/spack/repos/builtin/packages/r-circlize/package.py @@ -7,26 +7,31 @@ from spack import * class RCirclize(RPackage): - """Circular layout is an efficient way for the visualization of huge - amounts of information. Here this package provides an implementation - of circular layout generation in R as well as an enhancement of - available software. The flexibility of the package is based on the - usage of low-level graphics functions such that self-defined - high-level graphics can be easily implemented by users for specific - purposes. Together with the seamless connection between the powerful - computational and visual environment in R, it gives users more - convenience and freedom to design figures for better understanding - complex patterns behind multiple dimensional data.""" + """Circular Visualization + + Circular layout is an efficient way for the visualization of huge amounts + of information. Here this package provides an implementation of circular + layout generation in R as well as an enhancement of available software. The + flexibility of the package is based on the usage of low-level graphics + functions such that self-defined high-level graphics can be easily + implemented by users for specific purposes. Together with the seamless + connection between the powerful computational and visual environment in R, + it gives users more convenience and freedom to design figures for better + understanding complex patterns behind multiple dimensional data. The + package is described in Gu et al. 2014 + <doi:10.1093/bioinformatics/btu393>.""" homepage = "https://cloud.r-project.org/package=circlize" url = "https://cloud.r-project.org/src/contrib/circlize_0.4.1.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/circlize" + version('0.4.12', sha256='b3b60caa5292cf980cf474c85f59582f6862925631a4da86a78eac05903252f4') version('0.4.6', sha256='cec88cfc5e512a111cc37177552c25698ccc0e9bbecb0d6e60657e7b115a56fa') version('0.4.1', sha256='204a170ae3b982f09b652c4583189907cfa42a29bc7efaba02a1e0d79f1cf1f0') version('0.4.0', sha256='abdc1bbe264be42c1d7b65869979da7cd131032fd6fd3f11f9744dae54e83f5c') depends_on('r@3.0.0:', type=('build', 'run')) - depends_on('r-globaloptions@0.1.0:', type=('build', 'run')) + depends_on('r-globaloptions@0.1.0:', when='@:0.4.6', type=('build', 'run')) + depends_on('r-globaloptions@0.1.2:', when='@0.4.12:', type=('build', 'run')) depends_on('r-shape', type=('build', 'run')) depends_on('r-colorspace', type=('build', 'run')) |