Skip to content
Snippets Groups Projects
Commit 9afce9c4 authored by tjc's avatar tjc
Browse files

fix splitting gff

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@3329 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent e50a29c6
No related branches found
No related tags found
No related merge requests found
...@@ -391,8 +391,8 @@ public class DatabaseEntrySource implements EntrySource ...@@ -391,8 +391,8 @@ public class DatabaseEntrySource implements EntrySource
DatabaseDocument[] new_docs = doc.getGffDocuments(location, id); DatabaseDocument[] new_docs = doc.getGffDocuments(location, id);
db_entry = new DatabaseDocumentEntry[new_docs.length]; db_entry = new DatabaseDocumentEntry[new_docs.length];
for(int i=1; i<new_docs.length; i++) for(int i=0; i<new_docs.length; i++)
db_entry[i-1] = new DatabaseDocumentEntry(new_docs[i]); db_entry[i] = new DatabaseDocumentEntry(new_docs[i]);
} }
catch(EntryInformationException e) catch(EntryInformationException e)
{ {
......
...@@ -240,8 +240,7 @@ public class DatabaseDocument extends Document ...@@ -240,8 +240,7 @@ public class DatabaseDocument extends Document
else else
name = types[i]; name = types[i];
if(gff_buffer[i].length() > 0) new_docs[i-1] = new DatabaseDocument(location, id, gff_buffer[i], name);
new_docs[i-1] = new DatabaseDocument(location, id, gff_buffer[i], name);
} }
return new_docs; return new_docs;
......
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