Sha256: a5294dc7c5172f9613878c897d3fa812ebce9980aa554a3fe9f6dd9b14d8528a

Contents?: true

Size: 1.07 KB

Versions: 8

Compression:

Stored size: 1.07 KB

Contents

module Qa::Authorities
  module MeshTools
    class MeshImporter
      def import_from_file(f)
        entries = []
        trees = []
        mesh = Qa::Authorities::MeshTools::MeshDataParser.new(f)
        mesh.each_mesh_record do |record|
          entry = []
          entry << record['UI'].first
          entry << record['MH'].first
          entry << record['MH'].first.downcase
          entry << get_synonyms(record).join('|')
          entries << entry
          next if record['MN'].nil?
          trees += record['MN'].map do |tree_number|
            [record['UI'].first,
             tree_number]
          end
        end
        Qa::SubjectMeshTerm.import([:term_id, :term, :term_lower, :synonyms], entries)
        Qa::MeshTree.import([:term_id, :tree_number], trees)
      end

      private

        def get_synonyms(record)
          first_terms(record, 'PRINT ENTRY') + first_terms(record, 'ENTRY')
        end

        def first_terms(record, field)
          return [] if record[field].nil?
          record[field].map { |s| s.split('|').first }
        end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
qa-2.0.1 lib/qa/authorities/mesh_tools/mesh_importer.rb
qa-2.0.0 lib/qa/authorities/mesh_tools/mesh_importer.rb
qa-1.2.0 lib/qa/authorities/mesh_tools/mesh_importer.rb
qa-1.1.0 lib/qa/authorities/mesh_tools/mesh_importer.rb
qa-1.0.0 lib/qa/authorities/mesh_tools/mesh_importer.rb
qa-0.11.1 lib/qa/authorities/mesh_tools/mesh_importer.rb
qa-0.11.0 lib/qa/authorities/mesh_tools/mesh_importer.rb
qa-0.10.2 lib/qa/authorities/mesh_tools/mesh_importer.rb