Sha256: 856b831ceb115c5ae8f7830db4eb1aa2cf699757a449437e9c651ce7a52d2c1b
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
module OboParser module Utilities # Methods to aid in visualization module Viz # @params [ontology] # the result of a parse_obo_file def self.mock_coordinate_space(ontology, size: 20, cutoff: nil) data = ::OboParser::Utilities::Helpers.simple_data(ontology) x,y,z = 1,1,1 center_distance = ( size / 2) edge_length = (size / 2) - (size * 0.2) total_terms = ontology.terms.size grid_length = Math.cbrt(total_terms).ceil.to_i cutoff ||= size + 1 data.each_with_index do |row, i| break if i > cutoff print x * center_distance print "\t" print y * center_distance print "\t" print z * center_distance print "\t" print row[0] print "\t" print row[1] print "\n" x = x + 1 if (x % grid_length) == 0 x = 1 y = y + 1 end if (y % grid_length) == 0 y = 1 x = 1 z = z + 1 end end true end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
obo_parser-0.4.1 | lib/obo_parser/utilities/viz.rb |