Skip to content
Snippets Groups Projects
Commit 71def482 authored by Graham McVicker's avatar Graham McVicker
Browse files

supercontig length should be max(superctg_end) not length because occasionally...

supercontig length should be max(superctg_end) not length because occasionally supercontigs do not start at 1
parent 230243bc
No related branches found
No related tags found
No related merge requests found
......@@ -374,7 +374,7 @@ sub supercontig_to_seq_region {
my $select_sth = $dbh->prepare
("SELECT superctg_name, " .
"MAX(superctg_end)-MIN(superctg_start)+1 AS length " .
"MAX(superctg_end) AS length " .
"FROM $source.assembly " .
"GROUP BY superctg_name");
......
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