Skip to content
Snippets Groups Projects
Commit 744d7b25 authored by tjc's avatar tjc
Browse files

show file name if no cut sites found

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@10004 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent bdc3e2f9
Branches
Tags
No related merge requests found
......@@ -189,8 +189,11 @@ public class CircularGenomeController
new FileReader(restrictOutputs.get(i).getCanonicalPath()));
if(rd.cutSites.size() == 0)
JOptionPane.showMessageDialog(null, "No cut site found.",
{
JOptionPane.showMessageDialog(null,
"No cut site found for "+sequenceFiles.get(i).getName(),
"RE Digest Results", JOptionPane.INFORMATION_MESSAGE);
}
final DNADraw dna = Utils.createDNADrawFromReportDetails(
rd, entries.get(i));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment