diff options
author | George Hartzell <hartzell@alerce.com> | 2017-06-28 08:17:17 -0700 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2017-06-28 10:17:17 -0500 |
commit | 6ff7dde9a50270a4efa22c937e3a083a419ed514 (patch) | |
tree | ba09d9d4089b07c9ae1ab9b3a2542d2e88c3bbc6 /var | |
parent | 6480e382173e689ea734525827c683c57596ebf9 (diff) | |
download | spack-6ff7dde9a50270a4efa22c937e3a083a419ed514.tar.gz spack-6ff7dde9a50270a4efa22c937e3a083a419ed514.tar.bz2 spack-6ff7dde9a50270a4efa22c937e3a083a419ed514.tar.xz spack-6ff7dde9a50270a4efa22c937e3a083a419ed514.zip |
Add package for ngmlr (#4618)
Minimally tested on CentOS 7.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/ngmlr/package.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ngmlr/package.py b/var/spack/repos/builtin/packages/ngmlr/package.py new file mode 100644 index 0000000000..91780c2b05 --- /dev/null +++ b/var/spack/repos/builtin/packages/ngmlr/package.py @@ -0,0 +1,36 @@ +############################################################################## +# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC. +# Produced at the Lawrence Livermore National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/llnl/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## +from spack import * + + +class Ngmlr(CMakePackage): + """Ngmlr is a long-read mapper designed to align PacBilo or Oxford + Nanopore to a reference genome with a focus on reads that span + structural variations.""" + + homepage = "https://github.com/philres/ngmlr" + url = "https://github.com/philres/ngmlr/archive/v0.2.5.tar.gz" + + version('0.2.5', '1b2b1aaeb6a3accc8b9f3e5c29e77037') |