Skip to content
Snippets Groups Projects
Commit f120ca0e authored by Kieron Taylor's avatar Kieron Taylor :angry:
Browse files

Using undef instead of '', because '' gets flattened in eval.

parent 3b9a7d3c
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,7 @@ foreach my $slice (@$slices) {
if (! defined($old_canonical)) {
# Original canonical transcript is now absent, or never set.
if ($log_fh) {
print $log_fh "Old=[,,,,,,]\n";
print $log_fh "Old=[undef,undef,undef,undef,undef,undef,undef]\n";
printf $log_fh "New=[%s,%s,%s,%s,%s,%s,'%s']\n", @{ $transcript_selector->encode_transcript($new_canonical) };
}
} elsif ($new_canonical->dbID != $old_canonical->dbID) {
......
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