summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-cellranger/package.py
blob: 7da69c139563c0bd4174915165c036a75ad6b811 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2019 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 RCellranger(RPackage):
    """Helper functions to work with spreadsheets and the "A1:D10"
    style of cell range specification."""

    homepage = "https://cloud.r-project.org/package=cellranger"
    url      = "https://cloud.r-project.org/src/contrib/cellranger_1.1.0.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/cellranger"

    version('1.1.0', sha256='5d38f288c752bbb9cea6ff830b8388bdd65a8571fd82d8d96064586bd588cf99')

    depends_on('r@3.0.0:', type=('build', 'run'))
    depends_on('r-rematch', type=('build', 'run'))
    depends_on('r-tibble', type=('build', 'run'))