Skip to content
Snippets Groups Projects
Commit 921482b8 authored by tjc's avatar tjc
Browse files

changes for INDEXED_FASTA_FORMAT

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@14753 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent fe3d961f
Branches
Tags
No related merge requests found
......@@ -123,7 +123,7 @@ abstract public class SimpleDocumentEntry
final int MAX_LOOP = 9999;
while((new_line_group =
LineGroup.readNextLineGroup(pushback_reader)) != null)
LineGroup.readNextLineGroup(pushback_reader, this)) != null)
{
if(new_line_group instanceof SimpleDocumentFeature)
{
......@@ -158,6 +158,9 @@ abstract public class SimpleDocumentEntry
}
else
addLineGroup(new_line_group);
if(new_line_group instanceof IndexFastaStream)
break;
}
pushback_reader.close();
......@@ -443,7 +446,7 @@ abstract public class SimpleDocumentEntry
try
{
while((new_line_group =
LineGroup.readNextLineGroup(pushback_reader)) != null)
LineGroup.readNextLineGroup(pushback_reader, this)) != null)
{
if(new_line_group instanceof MiscLineGroup)
new_line_groups.addElement(new_line_group);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment