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

fix for getSequenceOffset()

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@15582 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent d348a2ca
No related branches found
No related tags found
No related merge requests found
......@@ -768,12 +768,16 @@ public class VCFview extends JPanel
}
if(offsetLengths.size() != contigs.length)
{
JOptionPane.showMessageDialog(this,
"There is a problem matching the reference sequences\n"+
"to the names in the VCF file. This may mean the labels\n"+
"on the reference features do not match those in the in\n"+
"the VCF file.",
"Problem Found", JOptionPane.WARNING_MESSAGE);
concatSequences = false;
return 0;
}
}
return offsetLengths.get(refName);
}
......
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