-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClustalParser.cabal
64 lines (56 loc) · 2.57 KB
/
ClustalParser.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
name: ClustalParser
version: 1.3.0
synopsis: Libary for parsing Clustal tools output
description: Currently contains parsers and datatypes for: clustalw2, clustalo, mlocarna, cmalign
.
Clustal tools are multiple sequence alignment tools for biological sequence like DNA, RNA and Protein.
For more information on clustal Tools refer to <http://www.clustal.org/>.
.
Mlocarna is a multiple sequence alignment tool for RNA sequences with secondary structure output.
For more information on mlocarna refer to <http://www.bioinf.uni-freiburg.de/Software/LocARNA/>.
.
Cmalign is a multiple sequence alignment program based on RNA family models and produces
,among others, clustal output. It is part of infernal <http://infernal.janelia.org/>.
license: GPL-3
license-file: LICENSE
author: Florian Eggenhofer
maintainer: [email protected]
category: Bioinformatics
build-type: Simple
cabal-version: >=1.10.0
Tested-With: GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1
extra-source-files:
README.md ChangeLog.md
source-repository head
type: git
location: https://github.com/eggzilla/ClustalParser
source-repository this
type: git
location: https://github.com/eggzilla/ClustalParser/tree/1.3.0
tag: 1.3.0
Library
Hs-Source-Dirs: .
ghc-options: -Wall -fno-warn-unused-do-bind -fsimpl-tick-factor=500
default-language: Haskell2010
build-depends: base >=4.5 && <5,
parsec>=3.1.9,
vector,
text
Exposed-Modules: Biobase.Clustal
Biobase.Clustal.Import
Biobase.Clustal.Types
executable ClustalParserTest
main-is: ClustalParserTest.hs
build-depends: base >= 4 && <= 5, cmdargs, ClustalParser, either-unwrap, text, vector, parsec
-- compiler options
ghc-options: -Wall -fno-warn-unused-do-bind -fsimpl-tick-factor=500
default-language: Haskell2010
other-modules: Biobase.Clustal.Import
Biobase.Clustal.Types
--test-suite hspec
-- build-depends: base, parsec, ClustalParser, hspec >= 2.0, text, hspec-discover
-- hs-source-dirs: test-suite
-- default-language: Haskell2010
-- main-is: Spec.hs
-- type: exitcode-stdio-1.0
-- other-modules: ClustalParserSpec