-
Notifications
You must be signed in to change notification settings - Fork 0
/
grntools.cabal
85 lines (79 loc) · 2.63 KB
/
grntools.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Name: grntools
Version: 0.2
Synopsis: GRN tools for modeling from biological pathways.
Description:
This program will convert a set of pathways written in a precise manner into
a discrete time, discrete space Markov chain, simulate its long run
probabilities, and transform those into an indication of how long each
protein is active for.
.
See the Paper "A Stochastic NF-kB Model Consistent with Pathway Information"
by Knight et al. for more information.
License: BSD3
License-file: LICENSE
Author: Jason Knight <[email protected]>
Maintainer: Jason Knight <[email protected]>
Build-Type: Simple
Copyright: 2010, 2011, 2012 Jason Knight
Category: Bioinformatics, Scientific Simulation, Simulation
Cabal-Version: >=1.8
Homepage: http://www.jasonknight.us/software
Flag Library
Description: Whether to build the library or not
Default: False
Executable GrnSim
Main-is: GrnSim.hs
Build-Depends: base >= 4,fgl,parsec,graphviz,containers,process,
regex-posix,directory,filepath,parseargs,Graphalyze,
random,statistics,gnuplot,vector,parallel,
deepseq,vector-strategies >0.1,pretty,text,
math-functions,mwc-random
ghc-options:
-rtsopts
---prof
---auto-all
---eventlog
---ddump-simpl-stats
-with-rtsopts=-A16M
-O -funbox-strict-fields
-fno-spec-constr-count
-threaded
Extensions: FlexibleInstances
Library
if flag(library)
Build-Depends: base >= 4,fgl,parsec,graphviz,containers,process,
regex-posix,directory,filepath,parseargs,Graphalyze,
random,statistics,gnuplot,vector,parallel,
deepseq,vector-strategies>0.1,pretty,text,
math-functions,mwc-random
Else
Buildable: False
Exposed-Modules: GRN.EM
GRN.Density
GRN.Render
GRN.Parse
GRN.Sparse
GRN.StateTransition
GRN.Types
GRN.Uncertainty
GRN.Utils
Extensions: FlexibleInstances
Test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: tests.hs
other-modules:
Tests.Helpers
Tests.Parse
ghc-options:
-threaded -rtsopts
build-depends:
grntools,
containers,
base,
HUnit,
QuickCheck >= 2,
test-framework,
test-framework-quickcheck2,
test-framework-hunit,
math-functions