add version 0.4.12 to r-circlize (#20958)

This commit is contained in:
Glenn Johnson 2021-01-16 08:20:26 -06:00 committed by GitHub
parent 184fb792f5
commit ad034af7dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,26 +7,31 @@
class RCirclize(RPackage): class RCirclize(RPackage):
"""Circular layout is an efficient way for the visualization of huge """Circular Visualization
amounts of information. Here this package provides an implementation
of circular layout generation in R as well as an enhancement of Circular layout is an efficient way for the visualization of huge amounts
available software. The flexibility of the package is based on the of information. Here this package provides an implementation of circular
usage of low-level graphics functions such that self-defined layout generation in R as well as an enhancement of available software. The
high-level graphics can be easily implemented by users for specific flexibility of the package is based on the usage of low-level graphics
purposes. Together with the seamless connection between the powerful functions such that self-defined high-level graphics can be easily
computational and visual environment in R, it gives users more implemented by users for specific purposes. Together with the seamless
convenience and freedom to design figures for better understanding connection between the powerful computational and visual environment in R,
complex patterns behind multiple dimensional data.""" 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" homepage = "https://cloud.r-project.org/package=circlize"
url = "https://cloud.r-project.org/src/contrib/circlize_0.4.1.tar.gz" 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" 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.6', sha256='cec88cfc5e512a111cc37177552c25698ccc0e9bbecb0d6e60657e7b115a56fa')
version('0.4.1', sha256='204a170ae3b982f09b652c4583189907cfa42a29bc7efaba02a1e0d79f1cf1f0') version('0.4.1', sha256='204a170ae3b982f09b652c4583189907cfa42a29bc7efaba02a1e0d79f1cf1f0')
version('0.4.0', sha256='abdc1bbe264be42c1d7b65869979da7cd131032fd6fd3f11f9744dae54e83f5c') version('0.4.0', sha256='abdc1bbe264be42c1d7b65869979da7cd131032fd6fd3f11f9744dae54e83f5c')
depends_on('r@3.0.0:', type=('build', 'run')) 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-shape', type=('build', 'run'))
depends_on('r-colorspace', type=('build', 'run')) depends_on('r-colorspace', type=('build', 'run'))