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
|
//
// testclustercalcs.hpp
// Mothur
//
// Created by Sarah Westcott on 4/18/17.
// Copyright © 2017 Schloss Lab. All rights reserved.
//
#ifndef testclustercalcs_hpp
#define testclustercalcs_hpp
#include "gtest/gtest.h"
#include "mcc.hpp"
#include "sensitivity.hpp"
#include "specificity.hpp"
#include "fdr.hpp"
#include "npv.hpp"
#include "ppv.hpp"
#include "f1score.hpp"
#include "tp.hpp"
#include "fp.hpp"
#include "fpfn.hpp"
#include "tptn.hpp"
#include "tn.hpp"
#include "fn.hpp"
#include "accuracy.hpp"
#include "fakemcc.hpp"
class TestClusterCalcs {
public:
TestClusterCalcs(string);
~TestClusterCalcs();
FakeClusterCalcValues fake;
ClusterMetric* metric;
private:
};
#endif /* testclustercalcs_hpp */
|