class RGFA::SegmentEndsPath

An array containing {RGFA::SegmentEnd} elements, which defines a path in the graph

Public Instance Methods

reverse() click to toggle source

Create a reverse direction path @return [RGFA::SegmentEndsPath]

Calls superclass method
# File lib/rgfa/segment_ends_path.rb, line 6
def reverse
  super.map {|segment_end| segment_end.to_segment_end.invert_end_type}
end