class Bio::TMHMM::TMH
Container class of the trainsmembrane helix(TMH
) and the other¶ ↑
segments.
Attributes
Returns
Returns an Range of TMH
position.
Returns the status of the TMH
. (“outside”, “TMhelix” or “inside”).
Returns
Public Class Methods
Source
# File lib/bio/appl/tmhmm/report.rb 178 def initialize(entry_id = nil, version = nil, status = nil, range = nil) 179 @entry_id = entry_id 180 @version = version 181 @status = status 182 @range = range 183 end
Public Instance Methods
Source
# File lib/bio/appl/tmhmm/report.rb 186 def to_s 187 [@entry_id, @version, @status, @range.first, @range.last].join("\t") 188 end