This file is indexed.

/usr/include/pbseq/alignment/statistics/pdfs.hpp is in libblasr-dev 0~20161219-1.

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
#ifndef _BLASR_PDFS_HPP_
#define _BLASR_PDFS_HPP_

#include <math.h>
#include <assert.h>
#include "StatUtils.hpp"

float Binomial(float p, int x, int n);

float Poisson(float lambda, int n);

float Gamma(float lambda, float t, int n);

float Exponential(float lambda, int t);

#endif