28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class RXmapbridge(RPackage):
|
|
"""Export plotting files to the xmapBridge for visualisation in X:Map.
|
|
|
|
xmapBridge can plot graphs in the X:Map genome browser. This package
|
|
exports plotting files in a suitable format."""
|
|
|
|
bioc = "xmapbridge"
|
|
|
|
version("1.58.0", commit="905077b7935c4678376f3f2afd9881ff0c45ad00")
|
|
version("1.56.0", commit="fdf2cafca8ad348813d3381fee57623fab53f0ab")
|
|
version("1.54.0", commit="a316e2399894191646c229378fa138b7461c75ab")
|
|
version("1.52.0", commit="fe32fcd2a83432c721eb948cb3af73dd187065f6")
|
|
version("1.48.0", commit="1cefe6b56c6dcb1f18028b3b7d6a67d490bc9730")
|
|
version("1.42.0", commit="d79c80dfc1a0ed3fd6d3e7a7c3a4aff778537ca9")
|
|
version("1.40.0", commit="00a2993863f28711e237bc937fa0ba2d05f81684")
|
|
version("1.38.0", commit="08138f00385fa0c669ff4cc33d7eac3d29cd615d")
|
|
version("1.36.0", commit="e44f648c9da9eaa130849a738d90dc11685050e2")
|
|
version("1.34.0", commit="f162e1f72ead5f5a1aede69032d5771a6572d965")
|
|
|
|
depends_on("r@2.0:", type=("build", "run"))
|