summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-cellranger/package.py
blob: 1464ce8595d14539caf8106c5462bb5a29876ba4 (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-2022 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.package import *


class RCellranger(RPackage):
    """Translate Spreadsheet Cell Ranges to Rows and Columns.

    Helper functions to work with spreadsheets and the "A1:D10" style of cell
    range specification."""

    cran = "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'))