This file is indexed.

/usr/include/d/bio/sff/read.d is in libbiod-dev 0.1.0-5build1.

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
module bio.sff.read;

/// SFF record
struct SffRead {
    /// Read identifier
    string name;

    /// Homopolymer stretch estimates for each flow of the read
    ushort[] flowgram_values;

    ubyte[] flow_index_per_base;

    /// Basecalled nucleotide sequence
    char[] bases;

    /// Phred-scaled quality scores
    ubyte[] quality_scores;

    ushort clip_qual_left;
    ushort clip_qual_right;
    ushort clip_adapter_left;
    ushort clip_adapter_right;

    /// Record start offset in the file
    ulong file_offset; // undead.stream uses ulong instead of size_t for positions, so we do that too here to be compatible
}