Skip to content

Commit

Permalink
check_BDBHs.pl now guesses -i strings literally, escaping special chars
Browse files Browse the repository at this point in the history
  • Loading branch information
eead-csic-compbio committed Mar 10, 2023
1 parent 41f1956 commit 10c6b74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -401,3 +401,4 @@
22082022: updated manual-est with description of pangenome matrix versions taken from tutorial
24082022: updated README files and contributors in manuals
07122022: compare_clusters.pl can intersect clusters from get_pangenes.pl
10032023: check_BDBHs.pl now guesses -i strings literally, escaping special chars
6 changes: 3 additions & 3 deletions check_BDBHs.pl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env perl

# 2013-20 Bruno Contreras-Moreira (1) and Pablo Vinuesa (2):
# 1: http://www.eead.csic.es/compbio (Laboratory of Computational Biology, EEAD/CSIC, Spain)
# 2013-23 Bruno Contreras-Moreira (1) and Pablo Vinuesa (2):
# 1: https://www.eead.csic.es/compbio (Laboratory of Computational Biology, EEAD/CSIC, Spain)
# 2: http://www.ccg.unam.mx/~vinuesa (Center for Genomic Sciences, UNAM, Mexico)

# This script can be used to retrieve BLAST (bidirectional) best hits produced by get_homologues.pl and get_homologues-est.pl
Expand Down Expand Up @@ -89,7 +89,7 @@
open(P2O,$p2ofilename);
while(<P2O>)
{
print if(/$INP_id/i);
print if(/\Q$INP_id\E/i);
}
close(P2O);
exit;
Expand Down

0 comments on commit 10c6b74

Please sign in to comment.