class Bio::FlatFile::AutoDetect::RuleSpecial

Special element that is always top or bottom priority.

Public Class Methods

new(name) click to toggle source
    # File lib/bio/io/flatfile/autodetection.rb
118 def initialize(name)
119   #super()
120   @name = name
121 end

Public Instance Methods

higher_priority_elements() click to toggle source

always returns void array

    # File lib/bio/io/flatfile/autodetection.rb
128 def higher_priority_elements
129   []
130 end
lower_priority_elements() click to toggle source

always returns void array

    # File lib/bio/io/flatfile/autodetection.rb
132 def lower_priority_elements
133   []
134 end
name=(x) click to toggle source

modification of @name is inhibited.

    # File lib/bio/io/flatfile/autodetection.rb
123 def name=(x)
124   raise 'cannot modify name'
125 end