summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/orfm/package.py
blob: 0d55ca42432c3262a244ff69067dec1f794c3d80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2019 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 Orfm(AutotoolsPackage):
    """A simple and not slow open reading frame (ORF) caller. No bells or
       whistles like frameshift detection, just a straightforward goal of
       returning a FASTA file of open reading frames over a certain length
       from a FASTA/Q file of nucleotide sequences."""

    homepage = "https://github.com/wwood/OrfM"
    url      = "https://github.com/wwood/OrfM/releases/download/v0.7.1/orfm-0.7.1.tar.gz"

    version('0.7.1', sha256='19f39c72bcc48127b757613c5eef4abae95ee6c82dccf96b041db527b27f319a')

    depends_on('zlib', type='link')