ClustalParser-1.0.0: ClustalParser.cabal
name: ClustalParser
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 1.0.0
synopsis: Libary for parsing Clustal tools output
description: Currently contains parsers and datatypes for: clustalw2, clustalo
.
For more information on clustal Tools refer to <http://www.clustal.org/>
.
ClustalW2 is a general purpose DNA or protein multiple sequence alignment program for three or more sequences.
.
Clustal Omega is a new multiple sequence alignment program that uses seeded guide trees and HMM profile-profile techniques to generate alignments between three or more sequences.
license: GPL
license-file: LICENSE
author: Florian Eggenhofer
maintainer: egg@tbi.univie.ac.at
-- copyright:
category: Bioinformatics
build-type: Simple
cabal-version: >=1.8
source-repository head
type: git
location: https://github.com/eggzilla/ClustalParser
source-repository this
type: git
location: https://github.com/eggzilla/ClustalParser/tree/1.0.0
tag: 1.0.0
library
-- Modules exported by the library.
exposed-modules: Bio.ClustalParser
other-modules: Bio.ClustalData
-- Other library packages from which modules are imported.
build-depends: base >=4.5 && <5, parsec
-- Directories containing source files.
hs-source-dirs: src
executable ClustalParserTest
main-is: ClustalParserTest.hs
build-depends: base >= 4 && <= 5, cmdargs, ClustalParser