2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-07-16 01:03:55 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-07-16 01:03:55 +08:00
|
|
|
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"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.7.1', sha256='19f39c72bcc48127b757613c5eef4abae95ee6c82dccf96b041db527b27f319a')
|
2018-03-22 01:55:47 +08:00
|
|
|
|
|
|
|
depends_on('zlib', type='link')
|