[Bioperl-guts-l] bioperl-live/Bio/Tools/HMMER Results.pm, 1.31, 1.32
Torsten Seemann
tseemann at dev.open-bio.org
Tue Sep 26 21:11:10 EDT 2006
- Previous message: [Bioperl-guts-l] bioperl-live/Bio/Index Abstract.pm, 1.50, 1.51 Blast.pm, 1.23, 1.24 EMBL.pm, 1.33, 1.34 Fasta.pm, 1.36, 1.37 Fastq.pm, 1.13, 1.14 GenBank.pm, 1.24, 1.25 Hmmer.pm, 1.11, 1.12 Qual.pm, 1.10, 1.11 SwissPfam.pm, 1.25, 1.26 Swissprot.pm, 1.27, 1.28
- Next message: [Bioperl-guts-l] bioperl-live/Bio/DB/Flat BinarySearch.pm, 1.25, 1.26
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/repository/bioperl/bioperl-live/Bio/Tools/HMMER
In directory dev.open-bio.org:/tmp/cvs-serv31781/Bio/Tools/HMMER
Modified Files:
Results.pm
Log Message:
Replaced /\/\// regexp madness with m{//}
Index: Results.pm
===================================================================
RCS file: /home/repository/bioperl/bioperl-live/Bio/Tools/HMMER/Results.pm,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** Results.pm 26 Sep 2006 22:03:18 -0000 1.31
--- Results.pm 27 Sep 2006 01:11:08 -0000 1.32
***************
*** 742,746 ****
while(<$file>) {
/^Align/ && last;
! /^\/\// && last;
# this is meant to match
--- 742,746 ----
while(<$file>) {
/^Align/ && last;
! m{^//} && last;
# this is meant to match
***************
*** 775,779 ****
}
}
! if( /^\/\// ) { next; }
$_ = <$file>;
--- 775,779 ----
}
}
! if( m{^//} ) { next; }
$_ = <$file>;
***************
*** 782,786 ****
while(1) {
! (!defined $_ || /^\/\//) && last;
# matches:
--- 782,786 ----
while(1) {
! (!defined $_ || m{^//}) && last;
# matches:
***************
*** 801,805 ****
}
while(<$file>) {
! /^\/\// && last;
/^\s*\S+:.*from\s+\d+\s+to\s+\d+/ && last;
$unit->add_alignment_line($_);
--- 801,805 ----
}
while(<$file>) {
! m{^//} && last;
/^\s*\S+:.*from\s+\d+\s+to\s+\d+/ && last;
$unit->add_alignment_line($_);
- Previous message: [Bioperl-guts-l] bioperl-live/Bio/Index Abstract.pm, 1.50, 1.51 Blast.pm, 1.23, 1.24 EMBL.pm, 1.33, 1.34 Fasta.pm, 1.36, 1.37 Fastq.pm, 1.13, 1.14 GenBank.pm, 1.24, 1.25 Hmmer.pm, 1.11, 1.12 Qual.pm, 1.10, 1.11 SwissPfam.pm, 1.25, 1.26 Swissprot.pm, 1.27, 1.28
- Next message: [Bioperl-guts-l] bioperl-live/Bio/DB/Flat BinarySearch.pm, 1.25, 1.26
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Bioperl-guts-l
mailing list