-
Notifications
You must be signed in to change notification settings - Fork 0
/
hasp.cabal
43 lines (34 loc) · 1.46 KB
/
hasp.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
cabal-version: >=1.10
name: hasp
version: 0.1.0
synopsis: Generate phylogenetic trees in Newick format.
description: Hasp generates a multiple sequence alignment of all sequences using progressive alignment and clusters them with UPGMA using Jukes-Cantor distances.
-- URL for the project homepage or repository.
homepage: https://github.com/seallard/hasp
bug-reports: https://github.com/seallard/hasp/issues
license: MIT
license-file: LICENSE
author: Sebastian Allard
maintainer: [email protected]
category: Bioinformatics
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
executable hasp
-- .hs or .lhs file containing the Main module.
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: Distances,
Needleman,
ProgressiveAlignment,
UPGMA
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends: base >=4.14 && <4.15,
HUnit >= 1.6.0,
array >= 0.5.4,
containers >= 0.6.2
-- Directories containing source files.
-- hs-source-dirs:
-- Base language which the package is written in.
default-language: Haskell2010