-
Notifications
You must be signed in to change notification settings - Fork 0
/
poseidon-analysis-hs.cabal
43 lines (40 loc) · 2.21 KB
/
poseidon-analysis-hs.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
name: poseidon-analysis-hs
version: 1.0.1.1
synopsis: A package with analysis-tools to work with Poseidon Genotype Data
description: The tools in this package analyse Poseidon-formatted genotype databases, a modular system for storing genotype data from thousands of individuals.
license: MIT
license-file: LICENSE
author: Stephan Schiffels, Clemens Schmid
maintainer: [email protected]
category: Bioinformatics
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md,
CHANGELOG.md
library
exposed-modules: Poseidon.Analysis.FStatsConfig, Poseidon.Analysis.RASconfig, Poseidon.Analysis.Utils,
Poseidon.Analysis.CLI.FStats, Poseidon.Analysis.CLI.RAS,
Poseidon.Generator.CLI.AdmixPops, Poseidon.Generator.CLI.SpaceTime,
Poseidon.Generator.Parsers, Poseidon.Generator.Types,
Poseidon.Generator.SampleGeno, Poseidon.Generator.Utils
hs-source-dirs: src
build-depends: base, poseidon-hs, sequence-formats, foldl,
exceptions, vector, lens-family, pipes, pipes-group, pipes-safe,
table-layout, parsec, aeson, bytestring, text, yaml, unordered-containers, containers,
co-log, MonadRandom, ansi-terminal, directory, parsec, parsec3-numbers, filepath, mtl,
time
default-language: Haskell2010
executable xerxes
main-is: Main.hs
hs-source-dirs: src-executables
build-depends: base, poseidon-hs, poseidon-analysis-hs, optparse-applicative, sequence-formats,
bytestring, co-log, text, filepath, MonadRandom
other-modules: Paths_poseidon_analysis_hs
default-language: Haskell2010
Test-Suite xerxes-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends: base, poseidon-hs, poseidon-analysis-hs, hspec, vector, sequence-formats
other-modules: Poseidon.Analysis.FStatsSpec, Poseidon.Analysis.UtilsSpec
default-language: Haskell2010