From: cmzmasek@gmail.com Date: Thu, 24 Feb 2011 15:52:40 +0000 (+0000) Subject: Edited wiki page PhyloBioRuby through web user interface. X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=a4e434a2ce9a6af8ef8a9eb7600cbd12324daff8;p=jalview.git Edited wiki page PhyloBioRuby through web user interface. --- diff --git a/wiki/PhyloBioRuby.wiki b/wiki/PhyloBioRuby.wiki index e45ddf6..856e7d5 100644 --- a/wiki/PhyloBioRuby.wiki +++ b/wiki/PhyloBioRuby.wiki @@ -66,7 +66,7 @@ options = ['--maxiterate', '1000', '--localpair'] mafft = Bio::MAFFT.new('path/to/mafft', options) report = mafft.query_align(seqs) -# Accesses the actual alignment +# Accesses the actual alignment. align = report.alignment # Prints each sequence to the console. @@ -103,7 +103,7 @@ options = ['-quiet', '-maxiters', '64'] muscle = Bio::Muscle.new('path/to/muscle', options) report = muscle.query_align(seqs) -# Accesses the actual alignment +# Accesses the actual alignment. align = report.alignment # Prints each sequence to the console.