Sha256: 009cfb1effc4dc5ef6a62e765605752bb188a9c2088209bf09a7b7dc60272a96

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

# This constants file is included during the installation make process, and
# so cannot rely on the rest of the bio-velvet_underground code
module Bio
  module Velvet
    class Underground
      DEFAULT_MAXKMERLENGTH=31

      # Different versions of velvet are compiled on installation of bio-velvet_underground.
      # These are the different MAXKMERLENGTH parameters that are given to the velvet Makefile.
      # See the velvet manual for more information on this.
      def self.max_kmers
        [31,63,127,255]
      end

      # Where is the library given the max_kmer_length
      def self.library_location_of(max_kmer_length=nil)
        if !Bio::Velvet::Underground.max_kmers.include?(max_kmer_length) and
          !max_kmer_length.nil?
          raise "bad max kmer length #{max_kmer_length}"
        end

        extras = []
        if !max_kmer_length.nil? and max_kmer_length != DEFAULT_MAXKMERLENGTH
          extras.push "-maxkmer#{max_kmer_length}"
        end
        return File.join(
          File.dirname(__FILE__),
          'external',
          "libvelvet#{extras.join('') }.so.1.0")
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bio-velvet_underground-0.3.1 lib/bio-velvet_underground/constants.rb
bio-velvet_underground-0.3.0 lib/bio-velvet_underground/constants.rb
bio-velvet_underground-0.2.1 lib/bio-velvet_underground/constants.rb
bio-velvet_underground-0.2.0 lib/bio-velvet_underground/constants.rb
bio-velvet_underground-0.1.0 lib/bio-velvet_underground/constants.rb