in reply to Can't run Clustalw through Bioperl
The documentation for Bio::Tools::Run::Alignment::Clustalw says that the environment variable needs to be set in a BEGIN block, so that the module can find the executable. Did you try that?
BEGIN { $ENV{CLUSTALDIR} = 'C:\Program Files (x86)\ClustalW2'; } use warnings; use strict; use Bio::AlignIO; use Bio::SeqIO; use Bio::Tools::Run::Alignment::Clustalw; ...
Hope this helps!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Can't run Clustalw through Bioperl
by dimitris852 (Acolyte) on Mar 14, 2016 at 02:07 UTC | |
by 1nickt (Canon) on Mar 14, 2016 at 02:21 UTC | |
by dimitris852 (Acolyte) on Mar 14, 2016 at 03:30 UTC | |
by 1nickt (Canon) on Mar 14, 2016 at 04:00 UTC | |
by dimitris852 (Acolyte) on Mar 14, 2016 at 04:37 UTC | |
|