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

handle empty sample data

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@15171 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 0c6b1cb4
No related branches found
No related tags found
No related merge requests found
...@@ -91,6 +91,8 @@ class VCFRecord ...@@ -91,6 +91,8 @@ class VCFRecord
*/ */
private String getSampleDataString() private String getSampleDataString()
{ {
if(data == null)
return "";
StringBuffer buff = new StringBuffer(); StringBuffer buff = new StringBuffer();
for(int i=0; i<data.length; i++) // loop over samples for(int i=0; i<data.length; i++) // loop over samples
{ {
......
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