diff options
author | Levi Baber <baberlevi@gmail.com> | 2018-08-22 09:37:03 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-08-22 09:37:03 -0500 |
commit | b1a619fdeb0b06b7c7f29d3c89251c301d47d01d (patch) | |
tree | a5ce7d2c9a84d0f950a20901fd36b48cfb136027 | |
parent | 6ca7654df9ef6fc5ca02b216db44849a3745e4b9 (diff) | |
download | spack-b1a619fdeb0b06b7c7f29d3c89251c301d47d01d.tar.gz spack-b1a619fdeb0b06b7c7f29d3c89251c301d47d01d.tar.bz2 spack-b1a619fdeb0b06b7c7f29d3c89251c301d47d01d.tar.xz spack-b1a619fdeb0b06b7c7f29d3c89251c301d47d01d.zip |
r-rsamtools: new version (#9049)
-rw-r--r-- | var/spack/repos/builtin/packages/r-rsamtools/package.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-rsamtools/package.py b/var/spack/repos/builtin/packages/r-rsamtools/package.py index 0789fd3580..aa1ed4b00b 100644 --- a/var/spack/repos/builtin/packages/r-rsamtools/package.py +++ b/var/spack/repos/builtin/packages/r-rsamtools/package.py @@ -34,16 +34,25 @@ class RRsamtools(RPackage): homepage = "https://bioconductor.org/packages/Rsamtools/" git = "https://git.bioconductor.org/packages/Rsamtools.git" + version('1.32.2', commit='2b3254ccdeb24dc6ad95a93c2eb527021631797e') version('1.28.0', commit='dfa5b6abef68175586f21add7927174786412472') depends_on('r-genomeinfodb', type=('build', 'run')) + depends_on('r-genomeinfodb@1.1.3:', when='@1.32.2', type=('build', 'run')) depends_on('r-genomicranges', type=('build', 'run')) + depends_on('r-genomicranges@1.31.8:', when='@1.32.2', type=('build', 'run')) depends_on('r-biostrings', type=('build', 'run')) + depends_on('r-biostrings@2.47.6:', when='@1.32.2', type=('build', 'run')) depends_on('r-biocgenerics', type=('build', 'run')) + depends_on('r-biocgenerics@0.25.1:', when='@1.32.2', type=('build', 'run')) depends_on('r-s4vectors', type=('build', 'run')) + depends_on('r-s4vectors@0.17.25:', when='@1.32.2', type=('build', 'run')) depends_on('r-iranges', type=('build', 'run')) + depends_on('r-iranges@2.13.12:', when='@1.32.2', type=('build', 'run')) depends_on('r-xvector', type=('build', 'run')) + depends_on('r-xvector@0.19.7:', when='@1.32.2', type=('build', 'run')) depends_on('r-zlibbioc', type=('build', 'run')) depends_on('r-bitops', type=('build', 'run')) depends_on('r-biocparallel', type=('build', 'run')) - depends_on('r@3.4.0:3.4.9', when='@1.28.0') + depends_on('r@3.4.0:3.4.9', when='@1.28.0', type=('build', 'run')) + depends_on('r@3.5.0:3.5.9', when='@1.32.2', type=('build', 'run')) |