Minnesota Supercomputing Institute
1.4.2
Wednesday, December 7, 2016
BioRuby is a package of Open Source Ruby code, with classes for DNA and protein sequence analysis, alignment, database parsing, and other Bioinformatics tools.
module load bioruby bioruby
#!/usr/bin/env ruby require 'bio' file=Bio::FastaFormat.open(ARGV.shift) file.each_entry do |f| puts "Sequence: " + f.seq end