-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGenbank.cabal
71 lines (63 loc) · 2.95 KB
/
Genbank.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Genbank
version: 2.5.1
synopsis: Libary for processing the NCBI genbank format
description: Haskell cabal Genbank libary contains tools, parser and datastructures for the NCBI (National Center for Biotechnology Information) Genbank format.
.
For more information on genbank refer to: <http://www.ncbi.nlm.nih.gov/genbank/>
.
For a sample genbank record see: <http://www.ncbi.nlm.nih.gov/Sitemap/samplerecord.html>
.
"Biobase.Genbank.Types" - Datastructures for Genbank format
.
Contains Haskell datastructures for Genbank format and for contained features, subfeatures
.
"Biobase.Genbank.Import" - Parse Genbank format
.
Contains Haskell functions to parse Genbank format from files or internal Strings.
.
"Biobase.Genbank.Tools" - Tools for processing Genbank
.
Contains Haskell functions to extract nucleotide sequences for features
extra-source-files:
README.md
license: GPL-3.0
license-file: LICENSE
author: Florian Eggenhofer
maintainer: [email protected]
-- copyright:
category: Bioinformatics
build-type: Simple
cabal-version: >= 1.10.0
tested-with: GHC == 9.0.1
Extra-Source-Files:
README.md ChangeLog.md
source-repository head
type: git
location: https://github.com/eggzilla/Genbank
source-repository this
type: git
location: https://github.com/eggzilla/Genbank/tree/2.5.1
tag: 2.5.1
library
-- Modules exported by the library.
exposed-modules: Biobase.Genbank.Import, Biobase.Genbank.Types, Biobase.Genbank.Tools, Biobase.Genbank.Export
-- Other library packages from which modules are imported.
build-depends: base >=4.5 && <5, parsec, split, bytestring, BiobaseEnsembl == 0.2.0.1, vector, BiobaseTypes == 0.2.1.*, BiobaseFasta == 0.4.0.*, containers
ghc-options: -Wall -O2
default-language: Haskell2010
-- Directories containing source files.
hs-source-dirs: .
executable GenbankConverter
main-is: Converter.hs
build-depends: base >= 4 && <= 5, cmdargs, Genbank, BiobaseEnsembl, either-unwrap, cmdargs
ghc-options: -Wall -O2
default-language: Haskell2010
other-modules: Paths_Genbank
hs-source-dirs: Biobase/Genbank
executable GenbankSequenceExtractor
main-is: SequenceExtractor.hs
build-depends: base >= 4 && <= 5, cmdargs, Genbank, BiobaseEnsembl, either-unwrap, BiobaseTypes == 0.2.1.*, BiobaseFasta == 0.4.0.*, bytestring, cmdargs
ghc-options: -Wall -O2
default-language: Haskell2010
other-modules: Paths_Genbank
hs-source-dirs: Biobase/Genbank