packages feed

biosff-0.3.7.1: biosff.cabal

Name:                biosff
Version:             0.3.7.1
Synopsis:            Library and executables for working with SFF files
Description:         The library contains the functionality for reading and writing
		     SFF files (sequencing data from 454 and Ion Torrent).  It duplicates
		     code from (and is incompatible with) the "bio" library.
Homepage:            http://biohaskell.org/
License:             LGPL-2.1
License-file:        COPYING
Author:              Ketil Malde
Maintainer:          ketil@malde.org
Stability:           Experimental
Category:            Bioinformatics
Build-type:          Simple
Cabal-version:       >=1.6

Source-repository head
  Type:     darcs
  Location: http://malde.org/~ketil/biohaskell/biosff

Source-repository this
  Type:     darcs
  Location: http://malde.org/~ketil/biohaskell/biosff
  Tag:      0.3.7

Flag flower
  Description: Build the 'flower' executable.
  Default:     True

Flag frecover
  Description: Build the 'frecover' executable.
  Default:     True

Flag fclip
  Description: Build the 'fclip' executable.
  Default:     True

Library
  Exposed-modules: Bio.Sequence.SFF, Bio.Sequence.SFF_filters
  Other-modules:   Bio.Sequence.SFF_name
  Build-depends:   base >= 3 && < 5, biocore >= 0.3, binary, bytestring, array
  Hs-Source-Dirs:  src
  Ghc-Options:     -Wall

Executable flower
  Main-Is:         Main.hs
  if flag(flower)
     Buildable:  True
  else
     Buildable:  False
  Other-Modules:   Fork, Options, Metrics, Print
  Build-Depends:   base >= 3 && < 5, cmdargs, mtl >= 2, array >= 0.4
  Hs-Source-Dirs:  src, src/Flower
  Ghc-Options:     -Wall

Executable frecover
  Main-Is:         Main.hs
  if flag(frecover)
     Buildable:  True
  else
     Buildable:  False
  Build-Depends:   base >= 3 && < 5
  Hs-Source-Dirs:  src, src/FRecover
  Ghc-Options:     -Wall

Executable fclip
  Main-Is:         Main.hs
  Other-Modules:   Options
  if flag(fclip)
     Buildable:  True
  else
     Buildable:  False
  Build-Depends:   base >= 3 && < 5
  Hs-Source-Dirs:  src, src/FClip
  Ghc-Options:     -Wall