Skip to content
Snippets Groups Projects
Commit 2cf67321 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Fix bug that added extraneous spaces in the suffixes of 1:many projected gene names.

parent 35761621
No related branches found
No related tags found
No related merge requests found
......@@ -297,7 +297,7 @@ sub project_display_names {
if ($total_gene_number > 1) {
$tuple_txt = " ($gene_number of $total_gene_number)";
my $existing = $dbEntry->display_id();
$existing =~ s/\(\d+ of \d+\)//;
$existing =~ s/ \(\d+ of \d+\)//;
$dbEntry->display_id($existing . $tuple_txt);
$info_txt .= $tuple_txt;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment