Skip to content
Snippets Groups Projects
Commit b619c31a authored by tcarver's avatar tcarver
Browse files

prompt to concatenate or use GFF tabix index

parent ce15f46f
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,8 @@ import uk.ac.sanger.artemis.util.LinePushBackReader;
import java.io.File;
import java.io.IOException;
import javax.swing.JOptionPane;
/**
* This class contains the method makeDocumentEntry (), which creates a
......@@ -79,7 +81,18 @@ abstract public class DocumentEntryFactory
document.getInputStream() instanceof net.sf.samtools.util.BlockCompressedInputStream)
{
if(IndexedGFFDocumentEntry.isIndexed( ((File)document.getLocation()) ))
return new IndexedGFFDocumentEntry(document);
{
Object[] possibleValues = { "Use index", "Ignore index" };
int sel = JOptionPane.showOptionDialog(null,
"Use the GFF index file (to increase the performance)\n"+
"or concatenate the sequences together?",
"Indexed GFF",
JOptionPane.DEFAULT_OPTION, JOptionPane.WARNING_MESSAGE,
null, possibleValues, possibleValues[0]);
if(sel == 0)
return new IndexedGFFDocumentEntry(document);
}
}
final LinePushBackReader document_reader =
......
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