summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-snprelate/package.py
blob: e5048597cdb3e45b4961716795a5f73723540a51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 2013-2021 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 RSnprelate(RPackage):
    """Parallel Computing Toolset for Relatedness and Principal Component
       Analysis of SNP Data.

       Genome-wide association studies (GWAS) are widely used to investigate
       the genetic basis of diseases and traits, but they pose many
       computational challenges. We developed an R package SNPRelate to provide
       a binary format for single-nucleotide polymorphism (SNP) data in GWAS
       utilizing CoreArray Genomic Data Structure (GDS) data files. The GDS
       format offers the efficient operations specifically designed for
       integers with two bits, since a SNP could occupy only two bits.
       SNPRelate is also designed to accelerate two key computations on SNP
       data using parallel computing for multi-core symmetric multiprocessing
       computer architectures: Principal Component Analysis (PCA) and
       relatedness analysis using Identity-By-Descent measures. The SNP GDS
       format is also used by the GWASTools package with the support of S4
       classes and generic functions. The extended GDS format is implemented in
       the SeqArray package to support the storage of single nucleotide
       variations (SNVs), insertion/deletion polymorphism (indel) and
       structural variation calls."""

    homepage = "https://bioconductor.org/packages/SNPRelate"
    git      = "https://git.bioconductor.org/packages/SNPRelate.git"

    version('1.18.1', commit='81c581bf76392efdc8ba237ca2e42ca1dba788ca')
    version('1.16.0', commit='0e38e8df4af87dff6c27a23af2867661998c0d85')
    version('1.14.0', commit='9501cbfc411aa320e58654a865fda2e9077977af')
    version('1.12.2', commit='dce2e2b6f36483a9f905bb5df6ae834a9f1136fe')
    version('1.10.2', commit='3f5c4010871df742e7a460586b38ad0c2fd37aeb')

    depends_on('r@2.15:', type=('build', 'run'))
    depends_on('r-gdsfmt@1.8.3:', type=('build', 'run'))