This file is indexed.

/usr/include/pbseq/pbdata/saf/RefInfo.hpp is in libpbdata-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
17
18
19
20
21
22
23
24
25
26
#ifndef _BLASR_REF_INFO_HPP_
#define _BLASR_REF_INFO_HPP_

#include <string>
#include <vector>
#include <stdint.h>

class OneRefInfo {
 public:
  std::string fullName;
  unsigned int id;
  unsigned int length;
  std::string md5;
  OneRefInfo();
};


class RefInfo {
 public:
    std::vector<std::string> fullName;
    std::vector<uint32_t> id;
    std::vector<uint32_t> length;
    std::vector<std::string> md5;
    bool RefIdToIndex(uint32_t qid, int &index);
};
#endif