packages feed

elynx-seq-0.3.3: elynx-seq.cabal

cabal-version:  2.2
name:           elynx-seq
version:        0.3.3
synopsis:       Handle molecular sequences
description:    Examine, modify, and simulate molecular sequences 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:      Dominik Schrempf (2020)
license:        GPL-3.0-or-later
license-file:   LICENSE
build-type:     Simple

extra-source-files:
    README.md
    ChangeLog.md
    data/AminoAcid.fasta
    data/Erroneous.fasta
    data/NucleotideDifferentLength.fasta
    data/NucleotideDifferentLengthTrimmed.fasta
    data/Nucleotide.fasta
    data/NucleotideIUPAC.fasta
    data/TranslateMitochondrialVertebrateDNA.fasta
    data/TranslateMitochondrialVertebrateProtein.fasta

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

library
  exposed-modules:
      ELynx.Data.Alphabet.Alphabet
      ELynx.Data.Alphabet.Character
      ELynx.Data.Alphabet.DistributionDiversity
      ELynx.Data.Character.AminoAcid
      ELynx.Data.Character.AminoAcidI
      ELynx.Data.Character.AminoAcidS
      ELynx.Data.Character.AminoAcidX
      ELynx.Data.Character.Character
      ELynx.Data.Character.Codon
      ELynx.Data.Character.Nucleotide
      ELynx.Data.Character.NucleotideI
      ELynx.Data.Character.NucleotideX
      ELynx.Data.Sequence.Alignment
      ELynx.Data.Sequence.Defaults
      ELynx.Data.Sequence.Sequence
      ELynx.Data.Sequence.Translate
      ELynx.Export.Sequence.Fasta
      ELynx.Import.Sequence.Fasta
  other-modules:
      Paths_elynx_seq
  autogen-modules:
      Paths_elynx_seq
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      aeson
    , attoparsec
    , base >=4.7 && <5
    , bytestring
    , containers
    , matrices
    , mwc-random
    , parallel
    , primitive
    , vector
    , vector-th-unbox
    , word8
  default-language: Haskell2010

test-suite seq-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      ELynx.Data.Alphabet.DistributionDiversitySpec
      ELynx.Data.Sequence.AlignmentSpec
      ELynx.Data.Sequence.SequenceSpec
      ELynx.Data.Sequence.TranslateSpec
      ELynx.Export.Sequence.FastaSpec
      ELynx.Import.Sequence.FastaSpec
      Paths_elynx_seq
  hs-source-dirs:
      test
  ghc-options: -Wall
  build-depends:
      base >=4.7 && <5
    , bytestring
    , elynx-seq
    , elynx-tools
    , hspec
    , matrices
    , vector
  default-language: Haskell2010