https://github.com/ekg/freebayes
Raw File
Tip revision: 60850dc518fc453622cbb40ad6dd9f67644ed859 authored by Pjotr Prins on 16 December 2020, 10:18:06 UTC
Disable cmake, but leave the file with a message
Tip revision: 60850dc
Result.h
#ifndef __RESULT_H
#define __RESULT_H

#include <vector>
#include <string>
#include <algorithm>
#include <utility>
#include "Genotype.h"

using namespace std;

class Result : public vector<SampleDataLikelihood> {

public:

    string name;
    Sample* observations;

    void sortDataLikelihoods(void);

    //pair<Genotype*, long double> bestMarginalGenotype(void);

};

#endif
back to top