Sha256: 3e2e5dc856978b244e3f1b3abc9661c202c1ae3f5aaed4d6fd01fb35600eab07
Contents?: true
Size: 1.62 KB
Versions: 3
Compression:
Stored size: 1.62 KB
Contents
#!/usr/bin/env ruby # CyP450Connection -- oddb -- 04.05.2004 -- mhuggler@ywesee.com require 'util/persistence' module ODDB module Interaction class AbstractLink attr_accessor :info, :href, :text def empty? @href.to_s.empty? && @text.to_s.empty? end def eql?(other) @href.eql? other.href end alias :== :eql? def hash @href.hash end end end class CyP450Connection attr_accessor :category, :links, :substance, :auc_factor, :cyp450 include Persistence def initialize super @links = [] end def init(app=nil) unless(@pointer.last_step.size > 1) @pointer.append(@oid) end @pointer end def adjust_types(values, app) if(conn_name = values[:substance]) substance = app.substance(conn_name) values.store(:substance, substance) end values end def cyp_id @cyp450.cyp_id if(@cyp450) end end class CyP450SubstrateConnection < CyP450Connection attr_accessor :cyp450 attr_reader :cyp_id def initialize(cyp_id) super() @cyp_id = cyp_id end def interactions_with(substance) if(@cyp450) @cyp450.interactions_with(substance) else [] end end def adjust_types(values, app) if(cyp_id = values[:cyp450]) values.store(:cyp450, app.cyp450(cyp_id)) end values end end class CyP450InteractionConnection < CyP450Connection attr_reader :substance_name def initialize(substance_name) super() @substance_name = substance_name end end class CyP450InhibitorConnection < CyP450InteractionConnection end class CyP450InducerConnection < CyP450InteractionConnection end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
oddb.org-1.0.2 | src/model/cyp450connection.rb |
oddb.org-1.0.1 | src/model/cyp450connection.rb |
oddb.org-1.0.0 | src/model/cyp450connection.rb |