-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbio-pipelines.cabal
More file actions
86 lines (80 loc) · 1.82 KB
/
Copy pathbio-pipelines.cabal
File metadata and controls
86 lines (80 loc) · 1.82 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
-- Initial bio-pipelines.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: bio-pipelines
version: 0.1.3
license: BSD3
license-file: LICENSE
author: Kai Zhang
maintainer: kai@kzhang.org
copyright: (c) 2019-2020 Kai Zhang
category: Bio
build-type: Simple
cabal-version: >=1.10
library
ghc-options: -Wall -fno-warn-unticked-promoted-constructors
exposed-modules:
Bio.Pipeline
Bio.Pipeline.CallPeaks
Bio.Pipeline.Demultiplex
Bio.Pipeline.Utils
Bio.Pipeline.Instances
Bio.Pipeline.Download
Bio.Pipeline.Report
Bio.Pipeline.NGS.RSEM
Bio.Pipeline.NGS.BWA
Bio.Pipeline.NGS.STAR
Bio.Pipeline.NGS.Utils
build-depends:
base >=4.0 && <5.0
, aeson
, async
, bytestring
, bytestring-lexing
, binary
, bio-experiments
, bioinformatics-toolkit >= 0.9.1
, case-insensitive
, conduit >= 1.3.0
, conduit-extra
, containers
, double-conversion
, data-default
, data-ordlist
, exceptions
, ftp-client
, ftp-client-conduit
, filepath
, hashable
, http-conduit
, HsHTSLib >= 1.9.2.2
, lens
, mtl
, matrices >= 0.4.4
, singletons >= 3.0
, singletons-base
, text
, temporary
, split
, shelly
, unordered-containers
, vector
, vector-algorithms
, vector-binary-instances
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: tests.hs
other-modules:
Test
default-language: Haskell2010
build-depends:
base
, bio-pipelines
, lens
, tasty
, tasty-golden
, tasty-hunit
, temporary
, bio-experiments