This file is indexed.

/usr/share/doc/libfast5-dev/examples/f5-mod.cpp is in libfast5-dev 0.6.5-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
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
92
93
94
95
96
97
98
//
// Part of: https://github.com/mateidavid/fast5
//
// Copyright (c) 2015-2017 Matei David, Ontario Institute for Cancer Research
// MIT License
//

#include <cassert>
#include <iostream>
#include <string>

#include <fast5.hpp>

using namespace std;

int main(int argc, char* argv[])
{
    if (argc != 2)
    {
        cerr << "use: " << argv[0] << " <fast5_file>" << endl;
        return EXIT_FAILURE;
    }
    string file_name(argv[1]);
    {
        fast5::File f;
        //
        // All fast5 operations are performed inside a try-catch block. This should
        // resist various hdf5 errors without leaking memory.
        //
        try
        {
            //
            // open file in rw mode
            //
            f.open(file_name, true);
            assert(f.is_open());
            assert(f.is_rw());
            //
            // find next available basecall group with given prefix
            //
            string test_bc_grp_prefix = "Test_";
            auto bc_grp_l = f.get_basecall_group_list();
            set< string > test_bc_grp_suffix_s;
            for (const auto& bc_grp : bc_grp_l)
            {
                if (bc_grp.compare(0, test_bc_grp_prefix.size(), test_bc_grp_prefix) == 0)
                {
                    cerr << "found group: " << test_bc_grp_prefix + bc_grp.substr(test_bc_grp_prefix.size()) << endl;
                }
                test_bc_grp_suffix_s.insert(bc_grp.substr(test_bc_grp_prefix.size()));
            }
            string test_bc_grp_suffix;
            for (unsigned i = 0; i < 1000; ++i)
            {
                ostringstream os;
                os << setw(3) << setfill('0') << i;
                if (test_bc_grp_suffix_s.count(os.str()) == 0)
                {
                    test_bc_grp_suffix = os.str();
                    break;
                }
            }
            assert(not test_bc_grp_suffix.empty());
            clog << "using group: " << test_bc_grp_prefix + test_bc_grp_suffix << endl;
            //
            // add basecall seq
            //
            f.add_basecall_seq(0, test_bc_grp_prefix + test_bc_grp_suffix, "test_name", "ACGT");
            //
            // add basecall events
            //
            vector< fast5::Basecall_Event > ev(3, {55.0, 1.0, 0.05, 0.01, .5, 0, array< char, 8 >{"ACGTA"}});
            f.add_basecall_events(0, test_bc_grp_prefix + test_bc_grp_suffix, ev);
            //
            // add basecall pore model
            //
            vector< fast5::Basecall_Model_State > mod(3, {56.0, 1.0, 42.0, 1.0, array< char, 8 >{"ACGTA"}});
            f.add_basecall_model(0, test_bc_grp_prefix + test_bc_grp_suffix, mod);
            //
            // add basecall pore model params
            //
            fast5::Basecall_Model_Params params{1.0, 0.0, 0.0, 1.0, .9, .9};
            f.add_basecall_model_params(0, test_bc_grp_prefix + test_bc_grp_suffix, params);
            //
            // add basecall model file
            //
            f.add_basecall_model_file(0, test_bc_grp_prefix + test_bc_grp_suffix, "/dev/null");
        }
        catch (hdf5_tools::Exception& e)
        {
            cout << "hdf5 error: " << e.what() << endl;
        }
        //
        // fast5 file is closed by its destructor at the end of this scope
        //
    }
    assert(hdf5_tools::File::get_object_count() == 0);
}