-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathposeidon-hs.cabal
71 lines (67 loc) · 4.1 KB
/
poseidon-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
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: poseidon-hs
version: 1.6.1.0
synopsis: A package with tools for working with Poseidon genotype data
description: The tools in this package read and 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.Package, Poseidon.GenotypeData, Poseidon.BibFile, Poseidon.Janno,
Poseidon.ColumnTypes, Poseidon.ColumnTypesUtils, Poseidon.MathHelpers,
Poseidon.PoseidonVersion, Poseidon.SequencingSource, Poseidon.Chronicle,
Poseidon.EntityTypes, Poseidon.ServerClient, Poseidon.Contributor, Poseidon.Version
Poseidon.CLI.List, Poseidon.CLI.Chronicle, Poseidon.CLI.Serve,
Poseidon.CLI.Summarise, Poseidon.CLI.Validate, Poseidon.Utils,
Poseidon.CLI.Survey, Poseidon.CLI.Forge, Poseidon.CLI.Init,
Poseidon.CLI.Rectify, Poseidon.CLI.Fetch, Poseidon.CLI.Genoconvert,
Poseidon.CLI.OptparseApplicativeParsers, Poseidon.CLI.Timetravel,
Poseidon.CLI.Jannocoalesce
other-modules: Paths_poseidon_hs
hs-source-dirs: src
build-depends: base >= 4.7 && < 5, sequence-formats>=1.6.1, text, time, pipes-safe,
exceptions, pipes, bytestring, filepath, yaml, aeson, directory, parsec,
vector, pipes-ordered-zip, table-layout<1.0.0.0, mtl, split, warp, warp-tls, wai-cors,
scotty < 0.20.0, cassava, pureMD5, wai, githash,
http-conduit, conduit, http-types, zip-archive,
unordered-containers, network-uri, optparse-applicative, co-log, regex-tdfa,
scientific, country, generics-sop, containers, process, deepseq, template-haskell,
MissingH
default-language: Haskell2010
executable trident
main-is: Main-trident.hs
hs-source-dirs: src-executables
build-depends: base, poseidon-hs, optparse-applicative, sequence-formats>=1.6.1, bytestring,
filepath, co-log
other-modules: Paths_poseidon_hs
default-language: Haskell2010
Test-Suite poseidon-tools-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends: base, hspec, poseidon-hs, bytestring, aeson,
raw-strings-qq, yaml, time, vector,
text, QuickCheck, directory, sequence-formats,
filepath, pipes, pipes-safe, pipes-ordered-zip,
unordered-containers, cassava, containers, process, country,
optparse-applicative
other-modules: Poseidon.PackageSpec, Poseidon.JannoSpec,
Poseidon.BibFileSpec, Poseidon.MathHelpersSpec, Poseidon.JannocoalesceSpec,
Poseidon.SummariseSpec, Poseidon.SurveySpec, Poseidon.GenotypeDataSpec,
Poseidon.EntitiesListSpec, PoseidonGoldenTests.GoldenTestsValidateChecksumsSpec,
PoseidonGoldenTests.GoldenTestsRunCommands, Poseidon.ChronicleSpec,
Poseidon.SequencingSourceSpec, Poseidon.InterfaceSpec
default-language: Haskell2010
executable poseidon-devtools
main-is: Main-devtools.hs
hs-source-dirs: test, src-executables
build-depends: base, poseidon-hs, optparse-applicative, directory,
filepath, text, unordered-containers, bytestring,
sequence-formats, process
other-modules: Paths_poseidon_hs, PoseidonGoldenTests.GoldenTestsRunCommands
default-language: Haskell2010