maint: remove Travis stuff which has been replaced with Github actions (#325)
[bioperl-live.git] / t / Tools / Signalp.t
blobe25d435d73e6fe397f158eec7c6ac97629e9928c
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id$
4 use strict;
6 BEGIN {
7     use Bio::Root::Test;
8     
9     test_begin(-tests => 11);
10         
11     use_ok('Bio::Tools::Signalp');
14 # global setting
16 my $verbose = test_debug();
18 # shared variables
20 my $infile;
21 my $parser;
22 my @feat;
24 # negative example without "YES" features
26 ok $infile = test_input_file('signalp.negative.out');
27 ok $parser = Bio::Tools::Signalp->new(-file=>$infile, -verbose=>$verbose);
29 while ( my $feat = $parser->next_result ) {
30   push @feat, $feat;
32 is @feat, 0;
33 is $parser->_seqname, 'my_fasta_id';
34 is $parser->_fact1,   'NO';
36 # positive example with "YES" features
38 ok $infile = test_input_file('signalp.positive.out');
39 ok $parser = Bio::Tools::Signalp->new(-file=>$infile, -verbose=>$verbose);
42 #  The current module does NOT parse stuff properly
43 #  It is probably from version 2 but version 3 is used today
44 #  This has to be investigated!!!! --Torsten
45 #  FIXME / TODO? / BUG / *** 
46
48 while ( my $feat = $parser->next_result ) {
49   push @feat, $feat;
51 is @feat , 1;
52 is $parser->_seqname, 'my_fasta_id';
53 is $parser->_fact1,   'YES';