Skip to content
Snippets Groups Projects
Commit 5cf8e6e5 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@3258 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 0dc21503
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ public class DatabaseDocument extends Document
private Hashtable db;
private Vector organism;
private String sqlLog = System.getProperty("user.home")+
System.getProperty("file.separator")+"art_sql.log";
System.getProperty("file.separator")+"art_sql_debug.log";
/**
*
......@@ -229,7 +229,7 @@ public class DatabaseDocument extends Document
while(rs.next())
{
int fmin = rs.getInt("fmin")+1;
int fmax = rs.getInt("fmax");
int fmax = rs.getInt("fmax")+1;
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