-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBlastHTTP.cabal
50 lines (46 loc) · 1.95 KB
/
BlastHTTP.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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.4.4
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