packages feed

BlastHTTP-1.4.2: BlastHTTP.cabal

name:                BlastHTTP
version:             1.4.2
synopsis:            Libary to interface with the NCBI blast REST interface
description:         Searches for a provided nucleotide or protein sequence with the NCBI Blast REST service and returns a blast result in xml format as BlastResult datatype. 
                     .
                     For more information on BLAST refer to: <http://blast.ncbi.nlm.nih.gov/Blast.cgi>.
                     .
                     Information on the webservice can be found at: <http://www.ncbi.nlm.nih.gov/BLAST/developer.shtml>.
                     .
                     If you plan to submit more than 20 searches in one session, please look up the Usage Guidelines in the webservice information.
license:             GPL-3
license-file:        LICENSE
author:              Florian Eggenhofer, Christian Hoener zu Siederdissen
maintainer:          egg@informatik.uni-freiburg.de
copyright:           Florian Eggenhofer
homepage:	     https://github.com/eggzilla/BlastHTTP
category:            Bioinformatics
build-type:          Simple
cabal-version:       >=1.10.0
Tested-With: GHC == 8.8, GHC == 8.10, GHC == 9.0

extra-source-files:
  README.md ChangeLog.md
  
source-repository head
  type:     git
  location: https://github.com/eggzilla/BlastHTTP

source-repository this
  type:     git
  location: https://github.com/eggzilla/BlastHTTP/tree/1.4.2
  tag:      1.4.2

library
  exposed-modules:     Biobase.BLAST.HTTP
  build-depends:       base >=4.5 && <5,
                       transformers,
                       bytestring,
                       conduit,
                       HTTP,
                       http-conduit,
                       hxt,
                       network ==2.8.0.0,
                       mtl,
                       BiobaseBlast ==0.3.3.*,
                       BiobaseFasta ==0.4.0.*,
                       either-unwrap,
                       zip-archive
  default-language:    Haskell2010
  ghc-options:         -O2