This file is indexed.

/usr/include/SeqLib/BamWalker.h is in libseqlib-dev 1.1.1+dfsg-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
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#ifndef SEQLIB_BAM_WALKER_H__
#define SEQLIB_BAM_WALKER_H__

#include <cassert>

#include <stdint.h> 
#include "SeqLib/BamRecord.h"

// not sure what going on here...
#ifndef INT32_MAX
#define INT32_MAX 0x7fffffffL
#endif

extern "C" {
#include <htslib/cram/cram.h>
#include <htslib/cram/cram_io.h>
}

struct idx_delete {
  void operator()(hts_idx_t* x) { if (x) hts_idx_destroy(x); }
};

struct hts_itr_delete {
  void operator()(hts_itr_t* x) { if (x) hts_itr_destroy(x); }
};

struct bgzf_delete {
  void operator()(BGZF* x) { if(x) bgzf_close(x); }
};

struct bam_hdr_delete {
  void operator()(bam_hdr_t* x) { if (x) bam_hdr_destroy(x); }
};

struct htsFile_delete { // shoudl also close cram index
  void operator()(htsFile* x) { if (x) sam_close(x); }
};

// Phred score transformations
inline int char2phred(char b) {
  uint8_t v = b;
  assert(v >= 33);
  return v - 33;
}

// from samtools
inline char *samfaipath(const char *fn_ref)
{
  char *fn_list = 0;
  if (fn_ref == 0) return 0;
  fn_list = (char*)calloc(strlen(fn_ref) + 5, 1);
  strcat(strcpy(fn_list, fn_ref), ".fai");
  if (access(fn_list, R_OK) == -1) { // fn_list is unreadable
    std::cerr << "ERROR: Cannot read the index file for CRAM read/write" << std::endl;
  }
  return fn_list;
}

namespace SeqLib {

  /** Small class to store a counter to measure BamReader progress.
   * Currently only stores number of reads seen / kept. 
   */
struct ReadCount {

  uint32_t keep; ///< Store total number of reads kept
  uint32_t total; ///< Store total number of reads seen

  ReadCount() : keep(0), total(0) {}
  
  /** Return the percent of total reads kept
   */
  int percent () const {
    int perc  = SeqLib::percentCalc<uint64_t>(keep, total); 
    return perc;
  }

  /** Return the total reads visited as a comma-formatted string */
  std::string totalString() const {
    return SeqLib::AddCommas<uint64_t>(total);
  }

  /** Return the kept reads as a comma-formatted string */
  std::string keepString() const {
    return SeqLib::AddCommas<uint64_t>(keep);
  }

};

}
#endif