/usr/include/libphylo/distances2Tree.h is in rate4site 3.0.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | // $Id: distances2Tree.h 962 2006-11-07 15:13:34Z privmane $
#ifndef ___DISTANCES2TREE
#define ___DISTANCES2TREE
#include "definitions.h"
#include "tree.h"
#include <string>
using namespace std;
class distances2Tree {
public:
virtual ~distances2Tree() {}
virtual distances2Tree* clone() const =0;
virtual tree computeTree(VVdouble distances, const vector<string>& names, const tree * const constriantTree = NULL) = 0;
};
#endif
|