lib/openstudio/analysis/translator/workflow.rb in openstudio-analysis-1.0.0.rc12 vs lib/openstudio/analysis/translator/workflow.rb in openstudio-analysis-1.0.0.rc13

- old
+ new

@@ -49,12 +49,16 @@ @osa[:problem][:workflow][i][:arguments].each do |arg| step_hash[:arguments][arg[:name].to_sym] = arg[:value] end end step_hash[:name] = step[:name] if step[:name] + step_hash[:description] = step[:description] if step[:description] + if @options[:da_descriptions] + step_hash[:name] = @options[:da_descriptions][i][:name] + step_hash[:description] = @options[:da_descriptions][i][:description] + end step_hash[:measure_id] = step[:uuid] if step[:uuid] step_hash[:version_id] = step[:version_uuid] if step[:version_uuid] - step_hash[:description] = step[:description] if step[:description] step_hash[:modeler_description] = step[:modeler_description] if step[:modeler_description] step_hash[:taxonomy] = step[:taxonomy] if step[:taxonomy] step_hash[:measure_type] = step[:measure_type] step_hash[:measure_type] = 'ModelMeasure' if step_hash[:measure_type] == 'RubyMeasure' @steps << step_hash