vcf-0.9.0: vcf.cabal
name: vcf
version: 0.9.0
synopsis: A package to parse VCF files inspired in similar python libraries
-- description:
license: MIT
license-file: LICENSE
author: Juan Paucar
maintainer: juantotish1@hotmail.com
-- copyright:
category: Bioinformatics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
ghc-options : -Wall -O2 -optc-03 -optc-ffast-math -funfolding-use-threshold=16 -fno-warn-orphans
exposed-modules: Bio.VCF.Internal.Types,
Bio.VCF.Parser.Parser,
Bio.VCF.Parser.Helpers
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && < 5,
aeson,
attoparsec >= 0.13,
bytestring,
text
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
ghc-options : -Wall
type : exitcode-stdio-1.0
hs-source-dirs : spec
main-is : Spec.hs
build-depends : base >=4.8 && < 5,
hspec,
hspec-expectations,
bytestring,
attoparsec,
vcf
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/juanpaucar/vcf