Skip to content
Snippets Groups Projects
Commit 95a5930e authored by Ian Longden's avatar Ian Longden
Browse files

Use long name for all, not just the segemented ones

parent 33bd5ace
No related branches found
No related tags found
No related merge requests found
......@@ -345,6 +345,8 @@ sub dump_embl {
my $entry_name = $slice->seq_region_name();
if($full_slice->name eq $slice->name) {
$name_str .= ' full sequence';
$acc = $slice->seq_region_name();
......@@ -363,6 +365,9 @@ sub dump_embl {
$version = $acc;
}
$acc = $slice->name();
#line breaks are allowed near the end of the line on ' ', "\t", "\n", ','
$: = (" \t\n-,");
......@@ -544,6 +549,8 @@ sub dump_genbank {
$version = $acc;
}
$acc = $slice->name(); # to keep format consistent for all
my $length = $slice->length;
my $start = $slice->start();
my $end = $slice->end();
......
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