oops, missing file
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2009 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
d316cbad4c
commit
7e30fe230a
|
|
@ -231,6 +231,10 @@ public class VCFRecord {
|
||||||
return getFilteringCodes() != null;
|
return getFilteringCodes() != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getFilterString() {
|
||||||
|
return mFilterString;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the information key-value pairs as a Map<>
|
* get the information key-value pairs as a Map<>
|
||||||
*
|
*
|
||||||
|
|
@ -333,6 +337,17 @@ public class VCFRecord {
|
||||||
this.mInfoFields.put(key, value);
|
this.mInfoFields.put(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* add an info field to the record
|
||||||
|
*
|
||||||
|
* @param m A map from info keys to info values
|
||||||
|
*/
|
||||||
|
public void addInfoFields(Map<String,String> m) {
|
||||||
|
for ( Map.Entry<String, String> e : m.entrySet() )
|
||||||
|
addInfoField(e.getKey(), e.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the generation of a string representation, which is used by the VCF writer
|
* the generation of a string representation, which is used by the VCF writer
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue