I got segmentation fault (core dumped) error when I try read SCF file.
I'm using Bio::SCF module in perl and just followed the example from "https://metacpan.org/pod/Bio::SCF".
The code is as below ...
#!/usr/bin/perl
use warnings;
use Bio::SCF;
my $scf = Bio::SCF->new('filename.scf'); # line A
or
tie %scf, 'Bio::SCF', "filename.scf"; # line B
I hoped one of the lines read the scf file but, neither worked and just sending the "segmentation fault (core dumped" message.
What can I do? Could anyone help with this?