Module: BioMart

Defined in:
lib/rbbt/sources/biomart.rb

Overview

This module interacts with BioMart. It performs queries to BioMart and synthesises a hash with the results. Note that this module connects to the online BioMart WS using the Open in ‘rbbt/util/open’ module which offers caching by default. To obtain up to date results you may need to clear the cache from previous queries.

Defined Under Namespace

Classes: QueryError

Constant Summary collapse

BIOMART_URL =
'http://www.ensembl.org/biomart/martservice?query='
MISSING_IN_ARCHIVE =
Rbbt.etc.biomart.missing_in_archive.exists? ? Rbbt.etc.biomart.missing_in_archive.yaml : {}

Class Method Summary collapse

Class Method Details

.query(database, main, attrs = nil, filters = nil, data = nil, open_options = {}) ⇒ Object

This method performs a query in biomart for a datasets and a given set of attributes, there must be a main attribute that will be used as the key in the result hash, optionally there may be a list of additional attributes and filters. The data parameter at the end is used internally to incrementally building the result, due to a limitation of the BioMart WS that only allows 3 external arguments, users normally should leave it unspecified or nil. The result is a hash, where the keys are the different values for the main attribute, and the value is a hash with every other attribute as key, and as value and array with all possible values (Note that for a given value of the main attribute, there may be more than one value for another attribute). If filters is left a nil it adds a filter to the BioMart query to remove results with the main attribute empty, this may cause an error if the BioMart WS does not allow filtering with that attribute.



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'lib/rbbt/sources/biomart.rb', line 136

def self.query(database, main, attrs = nil, filters = nil, data = nil, open_options = {})
  open_options = Misc.add_defaults open_options, :nocache => false, :filename => nil, :field_names => nil, :by_chr => false
  filename, field_names, by_chr = Misc.process_options open_options, :filename, :field_names, :by_chr
  attrs   ||= []
  open_options = Misc.add_defaults open_options, :keep_empty => false, :merge => true

  Log.low "BioMart query: '#{main}' [#{(attrs || []) * ', '}] [#{(filters || []) * ', '}] #{open_options.inspect}"

  max_items = 2
  chunks = []
  chunk = []
  attrs.each{|a|
    chunk << a
    if chunk.length == max_items
      chunks << chunk
      chunk = []
    end
  }

  chunks << chunk if chunk.any?

  chunks << [] if chunks.empty?

  Log.low "Chunks: #{chunks.length}"
  if chunks.any?
    chunks.each_with_index{|chunk,i|
      Log.low "Chunk #{ i + 1 } / #{chunks.length}: [#{chunk * ", "}]"
      data = get(database, main, chunk, filters, data, open_options.dup)
    }
  else
    data = get(database, main, [], filters, data, open_options.dup)
  end

  open_options[:filename] = "BioMart[#{main}+#{attrs.length}]"
  if filename.nil?
    results = TSV.open data, open_options
    results.key_field = main
    results.fields = attrs
    results
  else
    Open.write(filename) do |f|
      f.puts "#: " << Misc.hash2string(TSV::ENTRIES.collect{|key| [key, open_options[key]]})
      if field_names.nil?
        f.puts "#" << [main, attrs].flatten * "\t"
      else
        f.puts "#" << field_names * "\t"
      end
      f.write Open.read(data)
    end
    FileUtils.rm data
    filename
  end
end

.tsv(database, main, attrs = nil, filters = nil, data = nil, open_options = {}) ⇒ Object



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/rbbt/sources/biomart.rb', line 190

def self.tsv(database, main, attrs = nil, filters = nil, data = nil, open_options = {})
  attrs ||= []

  current_archive = Thread.current['archive'] 
  missing = MISSING_IN_ARCHIVE['all'] || []
  missing += MISSING_IN_ARCHIVE[current_archive] || [] if current_archive

  MISSING_IN_ARCHIVE.each do |k,v|
    if k =~ /^<(.*)/ 
      t = $1.strip
      missing+=v if Organism.compare_archives(current_archive, t) == -1
    elsif k=~ /^>(.*)/ 
      t = $1.strip
      missing+=v if Organism.compare_archives(current_archive, t) == 1
    end
  end
  attrs = attrs.uniq.reject{|attr| missing.include? attr[1]}
  changes = {}
  missing.select{|m| m.include? "~" }.each do |str|
    orig,_sep, new = str.partition "~"
    changes[orig] = new
  end
  attrs = attrs.collect{|n,k| [n, changes[k] || k] }
  attrs


  codes = attrs.collect{|attr| attr[1]}
  if open_options[:filename].nil?
    tsv = query(database, main.last, codes, filters, data, open_options)
    tsv.key_field = main.first
    tsv.fields    = attrs.collect{|attr| attr.first} 
    tsv
  else
    query(database, main.last, codes, filters, data, open_options.merge(:field_names => [main.first, attrs.collect{|attr| attr.first}].flatten))
  end
end