blob: f0e986190ea79ecd7fd77927564d8257109c9b49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# 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 RRgraphviz(RPackage):
"""Provides plotting capabilities for R graph objects.
Interfaces R with the AT and T graphviz library for plotting R graph
objects from the graph package."""
homepage = "https://bioconductor.org/packages/Rgraphviz"
git = "https://git.bioconductor.org/packages/Rgraphviz.git"
version('2.28.0', commit='c1f57c11f037c977f1d17f227f12a09a999e8c0b')
version('2.26.0', commit='e9b08c77121a45c65129d94a12b5c0b31c65617f')
version('2.24.0', commit='7d1fb00afed0d44e32b4a46f10137ab34f100577')
version('2.22.0', commit='5b8ebbf9b38574c08959dd4632e802b3fbccc121')
version('2.20.0', commit='eface6298150667bb22eac672f1a45e52fbf8c90')
depends_on('r@2.6.0:', type=('build', 'run'))
depends_on('r-graph', type=('build', 'run'))
depends_on('graphviz@2.16:', type='run')
|