packages feed

integreat-0.2.2.1: integreat.cabal

name:                integreat
version:             0.2.2.1
synopsis:            Integrate different assays.
description:         Integrate difference data sources and optionally perform differential integration.
homepage:            http://github.com/GregorySchwartz/integreat#readme
license:             GPL-3
license-file:        LICENSE
author:              Gregory W. Schwartz
maintainer:          gsch@mail.med.upenn.edu
copyright:           Copyright: (c) 2017 Gregory W. Schwartz
category:            Bioinformatics
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Types
                     , Utility
                     , Load
                     , Edge.Correlation
                     , Alignment.Cosine
                     , Alignment.RandomWalk
                     , Integrate
                     , Print
  build-depends:       base >= 4.7 && < 5
                     , aeson
                     , async
                     , bytestring
                     , cassava
                     , containers
                     , fgl
                     , foldl
                     , hmatrix
                     , lens
                     , mtl
                     , mwc-random
                     , parallel
                     , random-fu
                     , rank-product
                     , sequence
                     , statistics
                     , stringsearch
                     , text
                     , text-show
                     , vector
                     , vector-th-unbox
  ghc-options:         -O2
  default-language:    Haskell2010

executable integreat
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -O2
  build-depends:       base
                     , integreat
                     , bytestring
                     , cassava
                     , containers
                     , lens
                     , mtl
                     , optparse-generic
                     , text
                     , vector
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/GregorySchwartz/integreat