Bonjour,

J'essaie d'utiliser le module Bio-Grep :
http://search.cpan.org/~limaone/Bio-...ib/Bio/Grep.pm

script
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;
 
 
use Bio::Grep;
 
 
my $sbe = Bio::Grep->new('Vmatch');
 
$sbe->generate_database
({
        file => 'TestFile.cdna',
        datapath    => 'P:/Perl/',
        description => 'Test',
});
message d'erreur
The symlink function is unimplemented at C:/Perl/site/lib/Bio/Grep/Backend/BackendI.pm line 450.
Ce qui correspond à

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    if ( defined $args->{copy} && $args->{copy} ) {
        copy( $args->{file}, $newfile )
            or $self->throw(
            -class => 'Bio::Root::IOException',
            -text  => "Can't copy " . $args->{file} . " to $newfile",
            -value => $!
            );
    }
    else {
        my $abs_path = $self->is_path( abs_path( $args->{file} ) );
        symlink( $abs_path, $newfile )
            or $self->throw(
            -class => 'Bio::Root::IOException',
            -text  => "Can't symlink " . $abs_path . " to $newfile",
            -value => $!
            );
    }

Pourriez-vous m'aider à comprendre ce qui ne fonctionne pas s'il vous plait.


Merci beaucoup,



Jasmine,