|
Hello,
(Is this forum is still actively monitored?)
I'm using Bio::NEXUS in our lab's current phylogenetic software. So far, Bio::NEXUS works great, except when I try to import interleaved NEXUS files. I pasted useful code below. In this sample, the method 'read_file' stalls/hangs when $inputFile is interleaved NEXUS. However, 'read_file' works correctly when $inputFile is non-interleaved NEXUS. Am I incorrectly using the API?
my $inputFile = "$ARGV[0]";
my $nexusObject = Bio::NEXUS->new();
$nexusObject->read_file( "$inputFile", 1);
Thanks for any help,
Victor |