Edited wiki page PhyloBioRuby through web user interface.
authorcmzmasek@gmail.com <cmzmasek@gmail.com@ca865154-3058-d1c3-3e42-d8f55a55bdbd>
Sat, 26 Mar 2011 06:07:28 +0000 (06:07 +0000)
committercmzmasek@gmail.com <cmzmasek@gmail.com@ca865154-3058-d1c3-3e42-d8f55a55bdbd>
Sat, 26 Mar 2011 06:07:28 +0000 (06:07 +0000)
wiki/PhyloBioRuby.wiki

index d72c8b6..0bd30f5 100644 (file)
@@ -70,7 +70,7 @@ seqs.each { |seq| puts seq.to_s }
 
 # Writes multiple sequence alignment (possibly unaligned) 'seqs'
 # to a file in PHYLIP format.
-File.open('out1.phylip', 'w') do |f|
+File.open('outfile.phylip', 'w') do |f|
   f.write(seqs.output(:phylip))
 end
 }}}