diff --git a/modules/Bio/EnsEMBL/Pipeline/Production/PepStats.pm b/modules/Bio/EnsEMBL/Pipeline/Production/PepStats.pm index 38fff90fc2ec8979b36e7591f92f86a7c8a502af..be8b1ec32a39929c057293c901fb21dcb1b8053f 100644 --- a/modules/Bio/EnsEMBL/Pipeline/Production/PepStats.pm +++ b/modules/Bio/EnsEMBL/Pipeline/Production/PepStats.pm @@ -146,13 +146,10 @@ sub dump_translation { for my $dbid (@translation_ids) { my $translation = $ta->fetch_by_dbID($dbid); my $peptide_seq = $translation->seq(); - if ( !($peptide_seq =~ m/[BZX]/ig ) ) { - if ( $peptide_seq !~ /\n$/ ) { - $peptide_seq .= "\n"; - } - $peptide_seq =~ s/\*$//; - print TMP ">$dbid\n$peptide_seq"; + if ( $peptide_seq !~ /\n$/ ) { + $peptide_seq .= "\n"; } + print TMP ">$dbid\n$peptide_seq"; } close(TMP); }