class InterMine::PathQuery::TemplateLoopConstraint

Public Instance Methods

template_param_op() click to toggle source
     # File lib/intermine/query.rb
1285 def template_param_op
1286     case @op
1287     when 'IS'
1288         return 'eq'
1289     when 'IS NOT'
1290         return 'ne'
1291     end
1292 end