CaitlinG
CaitlinG

Reputation: 2015

Performing a BLAST search with BioRuby

I am attempting to perform a BLAST search using BioRuby on a Windows XP machine with Ruby 1.9.3 and BioRuby 1.4.3_0001. I have installed the necessary dependencies, e.g., cairo, but the output is as follows:

C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_require.rb:45:in `r
equire': cannot load such file -- cairo.so (LoadError)
        from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_requir
e.rb:45:in `require'
        from C:/Ruby193/lib/ruby/gems/1.9.1/gems/cairo-1.12.6-x86-mingw32/lib/ca
iro.rb:46:in `rescue in <top (required)>'
        from C:/Ruby193/lib/ruby/gems/1.9.1/gems/cairo-1.12.6-x86-mingw32/lib/ca
iro.rb:42:in `<top (required)>'
        from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_requir
e.rb:110:in `require'
        from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_requir
e.rb:110:in `rescue in require'
        from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_requir
e.rb:35:in `require'
        from C:/Ruby193/lib/ruby/gems/1.9.1/gems/bio-graphics-1.4/lib/bio-graphi
cs.rb:11:in `<top (required)>'
        from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_requir
e.rb:110:in `require'
        from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_requir
e.rb:110:in `rescue in require'
        from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_requir
e.rb:35:in `require'
        from bio283.rb:2:in `<main>'

The sample code I am using is as follows:

require 'bio'
require 'bio-graphics'

remote_blast_factory = Bio::Blast.remote('blastp', 'swissprot',
                                         '-e 0.0001', 'genomenet')

seq = Bio::Sequence::AA.new('MFRTKRSALVRRLWRSRAPGGEDEEEGAGGGGGGGELRGE')

# run the actual BLAST by querying the factory
report = remote_blast_factory.query(seq)

# Then, to parse the report, see Bio::Blast::Report
report.each do |hit|
    puts hit.evalue           # E-value
    puts hit.sw               # Smith-Waterman score (*)
    puts hit.identity         # % identity
    puts hit.overlap          # length of overlapping region
    puts hit.query_id         # identifier of query sequence
    puts hit.query_def        # definition(comment line) of query sequence
    puts hit.query_len        # length of query sequence
    puts hit.query_seq        # sequence of homologous region
    puts hit.target_id        # identifier of hit sequence
    puts hit.target_def       # definition(comment line) of hit sequence
    puts hit.target_len       # length of hit sequence
    puts hit.target_seq       # hit of homologous region of hit sequence
    puts hit.query_start      # start position of homologous
                              # region in query sequence
    puts hit.query_end        # end position of homologous region
                              # in query sequence
    puts hit.target_start     # start position of homologous region
                              # in hit(target) sequence
    puts hit.target_end       # end position of homologous region
                              # in hit(target) sequence
    puts hit.lap_at           # array of above four numbers
end

Could someone explain why the problem is occurring? I noticed the file name 'cairo.so' in the output. Could that relate to a linux/unix op. sys?

Thanks,

Caitlin

Upvotes: 1

Views: 391

Answers (1)

sawa
sawa

Reputation: 168101

One of the libraries you installed depends on cairo. You have to install it. The .so extension is a Ruby library written in C, used in Unix. In Windows, you need a corresponding .dll file installed.

Upvotes: 2

Related Questions