packages feed

bbi-0.1.1: bbi.cabal

name:                bbi
version:             0.1.1
synopsis:            Tools for reading Big Binary Indexed files, e.g., bigBed, bigWig
-- description:
license:             BSD3
license-file:        LICENSE
author:              Kai Zhang
maintainer:          kai@kzhang.org
copyright:           (c) 2014-2019 Kai Zhang
category:            Bio
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:
      Data.BBI
    , Data.BBI.BigBed
    , Data.BBI.BigWig
    , Data.BBI.Utils

  build-depends:
      base >=4.7 && <5.0
    , bytestring >=0.10.0.0
    , cereal >=0.4.0
    , conduit
    , mtl
    , containers
    , zlib

  hs-source-dirs:      src

  default-language:    Haskell2010

test-suite tests
  type: exitcode-stdio-1.0
  hs-source-dirs: tests
  main-is: tests.hs
  other-modules:
      Tests.BigBed

  default-language:    Haskell2010
  build-depends:
      base
    , bytestring
    , conduit
    , random
    , vector
    , tasty
    , tasty-golden
    , tasty-hunit
    , mtl
    , bioinformatics-toolkit
    , bbi

source-repository  head
  type: git
  location: https://github.com/kaizhang/bbi.git