blob: fa6c4f2907ec72e62fba842c968312ee4d00ff08 (
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 Diffsplice(MakefilePackage):
"""A novel tool for discovering and quantitating alternative splicing
variants present in an RNA-seq dataset, without relying on annotated
transcriptome or pre-determined splice pattern."""
homepage = "http://www.netlab.uky.edu/p/bioinfo/DiffSplice"
url = "http://protocols.netlab.uky.edu/~yin/download/diffsplice/diffsplice_0.1.1.tgz"
version('0.1.2beta', 'a1df6e0b50968f2c229d5d7f97327336')
version('0.1.1', 'be90e6c072402d5aae0b4e2cbb8c10ac')
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('diffsplice', prefix.bin)
|