Skip to content
Snippets Groups Projects
Commit 3fe22f65 authored by tjc's avatar tjc
Browse files

fmin and fmax start at zero so need to add one

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@3259 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 5cf8e6e5
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,7 @@ public class DatabaseDocument extends Document
while(rs.next())
{
int fmin = rs.getInt("fmin")+1;
int fmax = rs.getInt("fmax")+1;
int fmax = rs.getInt("fmax");
long type_id = rs.getLong("type_id");
long prop_type_id = rs.getLong("prop_type_id");
int strand = rs.getInt("strand");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment