summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rtsne/package.py
blob: 2ec641f5eb5d5ef4e3e8c75d8cc859e20c7c5987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2018 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 RRtsne(RPackage):
    """An R wrapper around the fast T-distributed Stochastic Neighbor
    Embedding implementation."""

    homepage = "https://CRAN.R-project.org/package=Rtsne"
    url      = "https://cran.r-project.org/src/contrib/Rtsne_0.13.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/Rtsne"

    version('0.13', 'ea1d2ef2bda16735bbf219ffda5b0661')
    version('0.11', '9a1eaa9b71d67cc27a55780e6e9df733')
    version('0.10', 'c587e1b76fdcea2629424f74c6e92340')

    depends_on('r@3.4.0:3.4.9')
    depends_on('r-rcpp', type=('build', 'run'))