File: filter_full.lua

package info (click to toggle)
ltrsift 1.0.2-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,172 kB
  • sloc: ansic: 14,200; makefile: 122; sh: 29
file content (35 lines) | stat: -rw-r--r-- 983 bytes parent folder | download | duplicates (5)
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
name        = "Full Protein Domain Set"
author      = "Sascha Steinbiss"
version     = "1.0"
email       = "steinbiss@zbh.uni-hamburg.de"
short_descr = "Filters out candidates without full protein domain set"
description = "Filters out a candidate if it does not contain at " ..
              "least one match for each RT, PR, INT and RH."

type = {}
type.RVT_1        = "RT"
type.RVT_thumb    = "RT"
type.RVP          = "PR"
type.rve          = "INT"
type.Integrase_Zn = "INT"
type.Integrase    = "INT"
type.RNase_H      = "RH"

function filter(gn)
  local present = {}
  gfi = gt.feature_node_iterator_new(gn)
  node = gfi:next()
  while not (node == nil) do
    if (node:get_type() == "protein_match") then
      domain = node:get_attribute("name")
      if not (type[domain] == nil) then
        present[type[domain]] = true
      end
    end
    node = gfi:next()
  end
  if present.RT and present.PR and present.INT and present.RH then
    return false
  end
  return true
end