diff options
author | Christopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com> | 2024-03-23 12:49:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 13:49:41 +0100 |
commit | cbe9b3d01cc3ced3276042ff87e94505fcfbc4c1 (patch) | |
tree | 6990dbe193d151bad416e5c0b20f27b5888e542e /var | |
parent | 0abf5ba43c25d6b84d2eb4aa069718d69598a80f (diff) | |
download | spack-cbe9b3d01cc3ced3276042ff87e94505fcfbc4c1.tar.gz spack-cbe9b3d01cc3ced3276042ff87e94505fcfbc4c1.tar.bz2 spack-cbe9b3d01cc3ced3276042ff87e94505fcfbc4c1.tar.xz spack-cbe9b3d01cc3ced3276042ff87e94505fcfbc4c1.zip |
bgen: add new package with version 1.1.7 (#43327)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/bgen/package.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bgen/package.py b/var/spack/repos/builtin/packages/bgen/package.py new file mode 100644 index 0000000000..0a2e6443f8 --- /dev/null +++ b/var/spack/repos/builtin/packages/bgen/package.py @@ -0,0 +1,27 @@ +# Copyright 2013-2024 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 Bgen(WafPackage): + """This repository contains a reference implementation of the BGEN format, written + in C++. The library can be used as the basis for BGEN support in other software, + or as a reference for developers writing their own implementations of the BGEN format. + + If you make use of the BGEN library, its tools or example programs, please cite: + + Band, G. and Marchini, J., "BGEN: a binary file format for imputed genotype and + haplotype data", bioArxiv 308296; doi: https://doi.org/10.1101/308296.""" + + homepage = "https://enkre.net/cgi-bin/code/bgen" + + license("BSL-1.0") + + version( + "1.1.7", + sha256="121f5956f04ad174bc410fa7deed59e2ebff0ec818a3c66cf5d667357dddfb62", + url="https://enkre.net/cgi-bin/code/bgen/tarball/6ac2d582f9/BGEN-6ac2d582f9.tar.gz", + ) |