Module: Bio::EMBLDB::Common

Included in:
Bio::EMBL, SPTR
Defined in:
lib/bio/db/embl/common.rb

Constant Summary collapse

DELIMITER =
"\n//\n"
RS =
DELIMITER
TAGSIZE =
5

Instance Method Summary collapse

Instance Method Details

#acObject Also known as: accessions

returns a Array of accession numbers in the AC lines.

AC Line

"AC   A12345; B23456;"
AC [AC1;]+

Accession numbers format:

1       2     3          4          5          6
[O,P,Q] [0-9] [A-Z, 0-9] [A-Z, 0-9] [A-Z, 0-9] [0-9]


98
99
100
101
102
103
104
105
106
107
# File 'lib/bio/db/embl/common.rb', line 98

def ac
  unless @data['AC']
    tmp = Array.new
    field_fetch('AC').split(/ /).each do |e|
      tmp.push(e.sub(/;/,''))
    end
    @data['AC'] = tmp
  end
  @data['AC']
end

#accessionObject

returns the first accession number in the AC lines



112
113
114
# File 'lib/bio/db/embl/common.rb', line 112

def accession
  ac[0]
end

#deObject Also known as: description, definition

returns a String int the DE line.

DE Line



120
121
122
123
124
125
# File 'lib/bio/db/embl/common.rb', line 120

def de
  unless @data['DE']
    @data['DE'] = fetch('DE')
  end
  @data['DE']
end

#drObject

returns contents in the DR line.

  • Bio::EMBLDB::Common#dr -> [ <Database cross-reference Hash>* ]

where <Database cross-reference Hash> is:

  • Bio::EMBLDB::Common#dr {|k,v| }

DR Line; defabases cross-reference (>=0) a cross_ref pre one line

"DR  database_identifier; primary_identifier; secondary_identifier."


313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# File 'lib/bio/db/embl/common.rb', line 313

def dr
  unless @data['DR']
    tmp = Hash.new
    self.get('DR').split(/\n/).each do |db|
      a = db.sub(/^DR   /,'').sub(/.$/,'').strip.split(/;[ ]/)
      dbname = a.shift
      tmp[dbname] = Array.new unless tmp[dbname]
      tmp[dbname].push(a)
    end
    @data['DR'] = tmp
  end
  if block_given?
    @data['DR'].each do |k,v|
      yield(k, v)
    end
  else
    @data['DR']
  end
end

#initialize(entry) ⇒ Object



85
86
87
# File 'lib/bio/db/embl/common.rb', line 85

def initialize(entry)
  super(entry, TAGSIZE)
end

#kwObject Also known as: keywords

returns keywords in the KW line.

  • Bio::EMBLDB::Common#kw -> [ <keyword>* ]

KW Line; keyword (>=1)

KW   [Keyword;]+


219
220
221
222
223
224
225
226
227
228
229
# File 'lib/bio/db/embl/common.rb', line 219

def kw
  unless @data['KW']
    if get('KW').size > 0
      tmp = fetch('KW').sub(/.$/,'')
      @data['KW'] = tmp.split(/;/).map {|e| e.strip }
    else
      @data['KW'] = []
    end
  end
  @data['KW']
end

#ocObject

returns contents in the OC line.

  • Bio::EMBLDB::Common#oc -> [ <organism class String>* ]

OC Line; organism classification (>=1)

OC   Eukaryota; Alveolata; Apicomplexa; Piroplasmida; Theileriidae;
OC   Theileria.


202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/bio/db/embl/common.rb', line 202

def oc
  unless @data['OC']
    begin
      @data['OC'] = fetch('OC').sub(/.$/,'').split(/;/).map {|e|
        e.strip 
      }
    rescue NameError
      nil
    end
  end
  @data['OC']
end

#ogObject

returns contents in the OG line.

  • Bio::EMBLDB::Common#og -> [ <ogranella String>* ]

OG Line; organella (0 or 1/entry)

OG   Plastid; Chloroplast.
OG   Mitochondrion.
OG   Plasmid sym pNGR234a.
OG   Plastid; Cyanelle.
OG   Plasmid pSymA (megaplasmid 1).
OG   Plasmid pNRC100, Plasmid pNRC200, and Plasmid pHH1.


179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/bio/db/embl/common.rb', line 179

def og
  unless @data['OG']
    og = Array.new
    if get('OG').size > 0
      ogstr = fetch('OG')
      ogstr.sub!(/\.$/,'')
      ogstr.sub!(/ and/,'')
      ogstr.sub!(/;/, ',')
      ogstr.split(',').each do |tmp|
        og.push(tmp.strip)
      end
    end
    @data['OG'] = og
  end
  @data['OG']
end

#os(num = nil) ⇒ Object

returns contents in the OS line.

  • Bio::EMBLDB#os -> Array of <OS Hash>

where <OS Hash> is:

[{'name'=>'Human', 'os'=>'Homo sapiens'}, 
 {'name'=>'Rat', 'os'=>'Rattus norveticus'}]
  • Bio::SPTR#os[‘name’] => “Human”

  • Bio::SPTR#os => ‘os’=>‘Homo sapiens’

  • Bio::STPR#os(0) => “Homo sapiens (Human)”

OS Line; organism species (>=1)

"OS   Trifolium repens (white clover)"

OS   Genus species (name).
OS   Genus species (name0) (name1).
OS   Genus species (name0) (name1).
OS   Genus species (name0), G s0 (name0), and G s (name1).


147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/bio/db/embl/common.rb', line 147

def os(num = nil)
  unless @data['OS']
    os = Array.new
    fetch('OS').split(/, and|, /).each do |tmp|
      if tmp =~ /([A-Z][a-z]* *[\w\d \:\'\+\-]+[\w\d])/
        org = $1
        tmp =~ /(\(.+\))/ 
        os.push({'name' => $1, 'os' => org})
      else
        raise "Error: OS Line. #{$!}\n#{fetch('OS')}\n"
      end
    end
    @data['OS'] = os
  end
  if num
    # EX. "Trifolium repens (white clover)"
    "#{@data['OS'][num]['os']} {#data['OS'][num]['name']"
  end
  @data['OS']
end

#refObject

returns contents in the R lines.

  • Bio::EMBLDB::Common#ref -> [ <refernece information Hash>* ]

where <reference information Hash> is:

{'RN' => '', 'RC' => '', 'RP' => '', 'RX' => '', 
 'RA' => '', 'RT' => '', 'RL' => '', 'RG' => ''}

R Lines

  • RN RC RP RX RA RT RL RG



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
# File 'lib/bio/db/embl/common.rb', line 241

def ref
  unless @data['R']
    ary = Array.new
    get('R').split(/\nRN   /).each do |str|
      raw = {'RN' => '', 'RC' => '', 'RP' => '', 'RX' => '', 
             'RA' => '', 'RT' => '', 'RL' => '', 'RG' => ''}
      str = 'RN   ' + str unless /^RN   / =~ str
      str.split("\n").each do |line|
        if /^(R[NPXARLCTG])   (.+)/ =~ line
          raw[$1] += $2 + ' '
        else
          raise "Invalid format in R lines, \n[#{line}]\n"
        end
      end
      raw.each_value {|v| 
        v.strip! 
        v.sub!(/^"/,'')
        v.sub!(/;$/,'')
        v.sub!(/"$/,'')
      }
      ary.push(raw)
    end
    @data['R'] = ary
  end
  @data['R']
end

#referencesObject

returns Bio::Reference object from Bio::EMBLDB::Common#ref.

  • Bio::EMBLDB::Common#ref -> Bio::References



270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# File 'lib/bio/db/embl/common.rb', line 270

def references
  unless @data['references']
    ary = self.ref.map {|ent|
      hash = Hash.new('')
      ent.each {|key, value|
        case key
        when 'RA'
          hash['authors'] = value.split(/, /)
        when 'RT'
          hash['title'] = value
        when 'RL'
          if /(.*) (\d+) *(\(([^\)]+)\))?(\, |\:)([a-zA-Z\d]+\-[a-zA-Z\d]+) *\((\d+)\)\.?\z/ =~ value.to_s
            hash['journal'] = $1.rstrip
            hash['volume']  = $2
            hash['issue']   = $4
            hash['pages']   = $6
            hash['year']    = $7
          else
            hash['journal'] = value
          end
        when 'RX'  # PUBMED, MEDLINE
          value.split(/\. /).each {|item|
            tag, xref = item.split(/\; /).map {|i| i.strip.sub(/\.\z/, '') }
            hash[ tag.downcase ]  = xref
          }
        end
      }
      Reference.new(hash)
    }
    @data['references'] = References.new(ary)
  end
  @data['references']
end