packages feed

tlynx-0.7.2.2: tlynx.cabal

cabal-version:      3.0
name:               tlynx
version:            0.7.2.2
synopsis:           Handle phylogenetic trees
description:
  Examine, compare, and simulate phylogenetic trees in a reproducible way. Please see the README on GitHub at <https://github.com/dschrempf/elynx>.

category:           Bioinformatics
homepage:           https://github.com/dschrempf/elynx#readme
bug-reports:        https://github.com/dschrempf/elynx/issues
author:             Dominik Schrempf
maintainer:         dominik.schrempf@gmail.com
copyright:          2021 Dominik Schrempf
license:            GPL-3.0-or-later
license-file:       LICENSE
build-type:         Simple
extra-source-files:
  ChangeLog.md
  README.md

source-repository head
  type:     git
  location: https://github.com/dschrempf/elynx

library
  exposed-modules:
    TLynx.Compare.Compare
    TLynx.Compare.Options
    TLynx.Connect.Connect
    TLynx.Connect.Options
    TLynx.Distance.Distance
    TLynx.Distance.Options
    TLynx.Examine.Examine
    TLynx.Examine.Options
    TLynx.Grabble
    TLynx.Options
    TLynx.Parsers
    TLynx.Shuffle.Options
    TLynx.Shuffle.Shuffle
    TLynx.Simulate.Options
    TLynx.Simulate.Simulate
    TLynx.TLynx

  other-modules:    Paths_tlynx
  autogen-modules:  Paths_tlynx
  hs-source-dirs:   src
  ghc-options:      -Wall -Wunused-packages
  build-depends:
    , aeson
    , async
    , attoparsec
    , base                  >=4.7 && <5
    , bytestring
    , comonad
    , containers
    , data-default-class
    , elynx-tools
    , elynx-tree
    , gnuplot
    , optparse-applicative
    , parallel
    , random
    , statistics
    , text
    , transformers
    , vector

  default-language: Haskell2010

executable tlynx
  main-is:          Main.hs
  other-modules:    Paths_tlynx
  autogen-modules:  Paths_tlynx
  hs-source-dirs:   app
  ghc-options:
    -Wall -Wunused-packages -threaded -rtsopts -with-rtsopts=-N

  build-depends:
    , base   >=4.7 && <5
    , tlynx

  default-language: Haskell2010