packages feed

ClustalParser-1.2.3: ClustalParser.cabal

name:                ClustalParser
version:             1.2.3
synopsis:            Libary for parsing Clustal tools output
description:         Currently contains parsers and datatypes for: clustalw2, clustalo, mlocarna, cmalign
                     .
                     Clustal tools are multiple sequence alignment tools for biological sequence like DNA, RNA and Protein.
                     For more information on clustal Tools refer to <http://www.clustal.org/>.
                     .
                     Mlocarna is a multiple sequence alignment tool for RNA sequences with secondary structure output. 
                     For more information on mlocarna refer to <http://www.bioinf.uni-freiburg.de/Software/LocARNA/>.
                     .
                     Cmalign is a multiple sequence alignment program based on RNA family models and produces
                     ,among others, clustal output. It is part of infernal <http://infernal.janelia.org/>.
                     
license:             GPL-3
license-file:        LICENSE
author:              Florian Eggenhofer
maintainer:          egg@informatik.uni-freiburg.de
-- copyright:
category:            Bioinformatics
build-type:          Simple
cabal-version:       >=1.8
Tested-With: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2

extra-source-files:
  README.md changelog

source-repository head
  type:     git
  location: https://github.com/eggzilla/ClustalParser

source-repository this
  type:     git
  location: https://github.com/eggzilla/ClustalParser/tree/1.2.3
  tag:      1.2.3


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>=3.1.9, vector, text 
  -- compiler options
  ghc-options:         -Wall -fno-warn-unused-do-bind
  -- Directories containing source files.
  hs-source-dirs:      src
  
executable ClustalParserTest
  main-is:          ClustalParserTest.hs
  build-depends:    base >= 4 && <= 5, cmdargs, ClustalParser, either-unwrap
  -- compiler options  
  ghc-options:         -Wall

test-suite hspec
    build-depends:    base, parsec, ClustalParser, hspec >= 2.0, text, hspec-discover
    hs-source-dirs:   test-suite
    main-is:          Spec.hs
    type:             exitcode-stdio-1.0
    other-modules:    ClustalParserSpec