This file is indexed.

/usr/share/genometools/gtdata/doc/luafilter_function.lua is in genometools-common 1.5.9+ds-4.

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
  function filter(gn)
    target = "exon"
    for curnode in gn:children() do
      if (curnode:get_type() == target) then
        return false
      end
    end
    return true
  end