Class: NexusParser::Builder
- Inherits:
-
Object
- Object
- NexusParser::Builder
- Defined in:
- lib/nexus_parser.rb
Overview
constructs the NexusParser
Instance Method Summary collapse
- #add_note(options = {}) ⇒ Object
- #add_var(hash) ⇒ Object
- #code_row(taxon_index, rowvector) ⇒ Object
-
#initialize ⇒ Builder
constructor
A new instance of Builder.
- #nexus_file ⇒ Object
- #stub_chr ⇒ Object
- #stub_taxon ⇒ Object
-
#update_chr(options = {}) ⇒ Object
legal hash keys are :index, :name, and integers that point to state labels.
- #update_state(chr_index, options = {}) ⇒ Object
- #update_taxon(options = {}) ⇒ Object
Constructor Details
#initialize ⇒ Builder
Returns a new instance of Builder.
127 128 129 |
# File 'lib/nexus_parser.rb', line 127 def initialize @nf = NexusParser.new end |
Instance Method Details
#add_note(options = {}) ⇒ Object
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
# File 'lib/nexus_parser.rb', line 218 def add_note( = {}) @opt = { :text => '' }.merge!() case @opt[:type] # Why does mesquite differentiate b/w footnotes and annotations?!, apparently same data structure? when 'TEXT' # a footnote if @opt[:file] @nf.notes << NexusParser::Note.new(@opt) elsif @opt[:taxon] && @opt[:character] # its a cell, parse this case @nf.codings[@opt[:taxon].to_i - 1][@opt[:character].to_i - 1].notes = [] if !@nf.codings[@opt[:taxon].to_i - 1][@opt[:character].to_i - 1].notes @nf.codings[@opt[:taxon].to_i - 1][@opt[:character].to_i - 1].notes << NexusParser::Note.new(@opt) elsif @opt[:taxon] && !@opt[:character] @nf.taxa[@opt[:taxon].to_i - 1].notes << NexusParser::Note.new(@opt) elsif @opt[:character] && !@opt[:taxon] @nf.characters[@opt[:character].to_i - 1].notes << NexusParser::Note.new(@opt) end when 'AN' # an annotation, rather than a footnote, same dif if @opt[:t] && @opt[:c] @nf.codings[@opt[:t].to_i - 1][@opt[:c].to_i - 1].notes = [] if !@nf.codings[@opt[:t].to_i - 1][@opt[:c].to_i - 1].notes @nf.codings[@opt[:t].to_i - 1][@opt[:c].to_i - 1].notes << NexusParser::Note.new(@opt) elsif @opt[:t] @nf.taxa[@opt[:t].to_i - 1].notes << NexusParser::Note.new(@opt) elsif @opt[:c] @nf.characters[@opt[:c].to_i - 1].notes << NexusParser::Note.new(@opt) end end end |
#add_var(hash) ⇒ Object
162 163 164 165 166 167 |
# File 'lib/nexus_parser.rb', line 162 def add_var(hash) hash.keys.each do |k| raise "var #{k} has already been set" if @nf.vars[:k] end @nf.vars.update(hash) end |
#code_row(taxon_index, rowvector) ⇒ Object
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/nexus_parser.rb', line 141 def code_row(taxon_index, rowvector) @nf.characters.each_with_index do |c, i| @nf.codings[taxon_index.to_i] = [] if !@nf.codings[taxon_index.to_i] @nf.codings[taxon_index.to_i][i] = NexusParser::Coding.new(:states => rowvector[i]) # !! we must update states for a given character if the state isn't found (not all states are referenced in description !! existing_states = @nf.characters[i].state_labels new_states = rowvector[i].class == Array ? rowvector[i].collect{|s| s.to_s} : [rowvector[i].to_s] new_states.delete("?") # we don't add this to the db new_states = new_states - existing_states new_states.each do |s| @nf.characters[i].add_state(:label => s) end end end |
#nexus_file ⇒ Object
255 256 257 |
# File 'lib/nexus_parser.rb', line 255 def nexus_file @nf end |
#stub_chr ⇒ Object
136 137 138 139 |
# File 'lib/nexus_parser.rb', line 136 def stub_chr @nf.characters.push(NexusParser::Character.new) return @nf.characters.size end |
#stub_taxon ⇒ Object
131 132 133 134 |
# File 'lib/nexus_parser.rb', line 131 def stub_taxon @nf.taxa.push(NexusParser::Taxon.new) return @nf.taxa.size end |
#update_chr(options = {}) ⇒ Object
legal hash keys are :index, :name, and integers that point to state labels
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/nexus_parser.rb', line 178 def update_chr( = {} ) @opt = { :name => '' }.merge!() return false if !@opt[:index] @index = @opt[:index].to_i # need to create the characters raise(NexusParser::ParseError, "Can't update character of index #{@index}, it doesn't exist! This is a problem parsing the character state labels. Check the indices. It may be for this character \"#{@opt[:name]}\".") if !@nf.characters[@index] (@nf.characters[@index].name = @opt[:name]) if @opt[:name] @opt.delete(:index) @opt.delete(:name) # the rest have states @opt.keys.each do |k| if (@nf.characters[@index].states != {}) && @nf.characters[@index].states[k] # state exists ## !! ONLY HANDLES NAME, UPDATE TO HANDLE notes etc. when we get them ## update_state(@index, :index => k, :name => @opt[k]) else # doesn't, create it @nf.characters[@index].add_state(:label => k.to_s, :name => @opt[k]) end end end |
#update_state(chr_index, options = {}) ⇒ Object
210 211 212 213 214 215 216 |
# File 'lib/nexus_parser.rb', line 210 def update_state(chr_index, = {}) # only handling name now #options.keys.each do |k| @nf.characters[chr_index].states[[:index]].name = [:name] # add notes here # end end |
#update_taxon(options = {}) ⇒ Object
169 170 171 172 173 174 175 |
# File 'lib/nexus_parser.rb', line 169 def update_taxon( = {}) @opt = { :name => '' }.merge!() return false if !@opt[:index] (@nf.taxa[@opt[:index]].name = @opt[:name]) if @opt[:name] end |