spack/var/spack/repos/builtin/packages/glfmultiples/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

31 lines
1.1 KiB
Python

# 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 Glfmultiples(MakefilePackage):
"""glfMultiples is a GLF-based variant caller for next-generation
sequencing data. It takes a set of GLF format genotype likelihood
files as input and generates a VCF-format set of variant calls
as output. """
homepage = "https://genome.sph.umich.edu/wiki/GlfMultiples"
url = "http://www.sph.umich.edu/csg/abecasis/downloads/generic-glfMultiples-2010-06-16.tar.gz"
version('2010-06-16', sha256='f7abef6f6b043e9052fb408bb2aae6d0d97d907aedc1b3e02dd0db08eb81b979')
depends_on('zlib')
def edit(self, spec, prefix):
makefile = FileFilter('Makefile')
makefile.filter('CXX=.*', 'CXX = ' + env['CXX'])
makefile.filter('CFLAGS=.*',
'CFLAGS=-O2 -I./libsrc -I./pdf ' +
'-D_FILE_OFFSET_BITS=64 -D__USE_LONG_INT')
def install(self, spec, prefix):
make('INSTALLDIR=%s' % prefix, 'install')