1 | ## $Id: Makefile.am 4089 2021-09-07 00:56:40Z peter $ |
---|
2 | |
---|
3 | # Copyright (C) 2005 Jari Häkkinen, Peter Johansson |
---|
4 | # Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson, Markus Ringnér |
---|
5 | # Copyright (C) 2009, 2010, 2011, 2012, 2013, 2016, 2017, 2018, 2020, 2021 Peter Johansson |
---|
6 | # |
---|
7 | # This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
8 | # |
---|
9 | # The yat library is free software; you can redistribute it and/or |
---|
10 | # modify it under the terms of the GNU General Public License as |
---|
11 | # published by the Free Software Foundation; either version 3 of the |
---|
12 | # License, or (at your option) any later version. |
---|
13 | # |
---|
14 | # The c++ library is distributed in the hope that it will be useful, |
---|
15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | # General Public License for more details. |
---|
18 | # |
---|
19 | # You should have received a copy of the GNU General Public License |
---|
20 | # along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
21 | |
---|
22 | yat_libyat_la_SOURCES += \ |
---|
23 | yat/statistics/AUC.cc yat/statistics/Averager.cc \ |
---|
24 | yat/statistics/Averager1.cc \ |
---|
25 | yat/statistics/Averager3.cc \ |
---|
26 | yat/statistics/Averager4.cc \ |
---|
27 | yat/statistics/AveragerPair.cc \ |
---|
28 | yat/statistics/AveragerWeighted.cc \ |
---|
29 | yat/statistics/AveragerPairWeighted.cc \ |
---|
30 | yat/statistics/Chi2.cc \ |
---|
31 | yat/statistics/Fisher.cc yat/statistics/FoldChange.cc \ |
---|
32 | yat/statistics/GaussianMixture.cc \ |
---|
33 | yat/statistics/Histogram.cc \ |
---|
34 | yat/statistics/Kendall.cc yat/statistics/KolmogorovSmirnov.cc \ |
---|
35 | yat/statistics/KolmogorovSmirnovOneSample.cc \ |
---|
36 | yat/statistics/LikelihoodRatioTestBinomial.cc \ |
---|
37 | yat/statistics/Pearson.cc \ |
---|
38 | yat/statistics/PearsonCorrelation.cc \ |
---|
39 | yat/statistics/PercentileConfidenceInterval.cc \ |
---|
40 | yat/statistics/Percentiler.cc \ |
---|
41 | yat/statistics/ROC.cc \ |
---|
42 | yat/statistics/SAMScore.cc yat/statistics/Score.cc \ |
---|
43 | yat/statistics/Smoother.cc yat/statistics/SNRScore.cc \ |
---|
44 | yat/statistics/Spearman.cc \ |
---|
45 | yat/statistics/TukeyBiweightEstimator.cc \ |
---|
46 | yat/statistics/tScore.cc \ |
---|
47 | yat/statistics/tTest.cc \ |
---|
48 | yat/statistics/utility.cc yat/statistics/VectorFunction.cc \ |
---|
49 | yat/statistics/WilcoxonFoldChange.cc |
---|
50 | |
---|
51 | nobase_include_HEADERS += \ |
---|
52 | $(srcdir)/yat/statistics/AUC.h \ |
---|
53 | $(srcdir)/yat/statistics/averager_base.h \ |
---|
54 | $(srcdir)/yat/statistics/Average.h \ |
---|
55 | $(srcdir)/yat/statistics/Averager.h \ |
---|
56 | $(srcdir)/yat/statistics/Averager1.h \ |
---|
57 | $(srcdir)/yat/statistics/Averager3.h \ |
---|
58 | $(srcdir)/yat/statistics/Averager4.h \ |
---|
59 | $(srcdir)/yat/statistics/AveragerPair.h \ |
---|
60 | $(srcdir)/yat/statistics/AveragerWeighted.h \ |
---|
61 | $(srcdir)/yat/statistics/AveragerPairWeighted.h \ |
---|
62 | $(srcdir)/yat/statistics/averager_traits.h \ |
---|
63 | $(srcdir)/yat/statistics/Chi2.h \ |
---|
64 | $(srcdir)/yat/statistics/Distance.h \ |
---|
65 | $(srcdir)/yat/statistics/EuclideanDistance.h \ |
---|
66 | $(srcdir)/yat/statistics/Fisher.h \ |
---|
67 | $(srcdir)/yat/statistics/FoldChange.h \ |
---|
68 | $(srcdir)/yat/statistics/GaussianMixture.h \ |
---|
69 | $(srcdir)/yat/statistics/Histogram.h \ |
---|
70 | $(srcdir)/yat/statistics/Kendall.h \ |
---|
71 | $(srcdir)/yat/statistics/KolmogorovSmirnov.h \ |
---|
72 | $(srcdir)/yat/statistics/KolmogorovSmirnovOneSample.h \ |
---|
73 | $(srcdir)/yat/statistics/LikelihoodRatioTestBinomial.h \ |
---|
74 | $(srcdir)/yat/statistics/Pearson.h \ |
---|
75 | $(srcdir)/yat/statistics/PearsonCorrelation.h \ |
---|
76 | $(srcdir)/yat/statistics/PearsonDistance.h \ |
---|
77 | $(srcdir)/yat/statistics/PercentileConfidenceInterval.h \ |
---|
78 | $(srcdir)/yat/statistics/Percentiler.h \ |
---|
79 | $(srcdir)/yat/statistics/ROC.h \ |
---|
80 | $(srcdir)/yat/statistics/SAMScore.h \ |
---|
81 | $(srcdir)/yat/statistics/Score.h \ |
---|
82 | $(srcdir)/yat/statistics/Smoother.h \ |
---|
83 | $(srcdir)/yat/statistics/SNRScore.h \ |
---|
84 | $(srcdir)/yat/statistics/Spearman.h \ |
---|
85 | $(srcdir)/yat/statistics/TukeyBiweightEstimator.h \ |
---|
86 | $(srcdir)/yat/statistics/tScore.h \ |
---|
87 | $(srcdir)/yat/statistics/tTest.h \ |
---|
88 | $(srcdir)/yat/statistics/utility.h \ |
---|
89 | $(srcdir)/yat/statistics/VectorFunction.h \ |
---|
90 | $(srcdir)/yat/statistics/WilcoxonFoldChange.h |
---|