spack/var/spack/repos/builtin/packages/r-exomedepth/package.py
Glenn Johnson 7996bc809a
New package: r-exomedepth (#14884)
This PR adds the r-exomedepth package and r-aod as a dependency.
2020-02-13 19:52:43 -06:00

30 lines
1.3 KiB
Python

# 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 RExomedepth(RPackage):
"""Calls copy number variants (CNVs) from targeted sequence data, typically
exome sequencing experiments designed to identify the genetic basis of
Mendelian disorders."""
homepage = "https://cloud.r-project.org/package=ExomeDepth"
url = "https://cloud.r-project.org/src/contrib/ExomeDepth_1.1.15.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/ExomeDepth"
version('1.1.15', sha256='112bcb536f5766d9d0b55e064feedd6727ccab14cb1edfdba1f0d7b890e55ad2')
depends_on('r@3.4.0:', type=('build', 'run'))
depends_on('r-biostrings', type=('build', 'run'))
depends_on('r-iranges', type=('build', 'run'))
depends_on('r-rsamtools', type=('build', 'run'))
depends_on('r-genomicranges@1.23.0:', type=('build', 'run'))
depends_on('r-aod', type=('build', 'run'))
depends_on('r-vgam@0.8.4:', type=('build', 'run'))
depends_on('r-genomicalignments', type=('build', 'run'))
depends_on('r-dplyr', type=('build', 'run'))
depends_on('r-magrittr', type=('build', 'run'))