toString method
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2512 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
1c90e6a954
commit
5ce11c3dad
|
|
@ -217,6 +217,10 @@ public class VCFGenotypeRecord implements Genotype, SampleBacked {
|
|||
|
||||
}
|
||||
|
||||
@Override public String toString() {
|
||||
return String.format("[VCFGenotype %s %s %s %s]", getLocation(), mSampleName, this.mGenotypeAlleles, mFields);
|
||||
}
|
||||
|
||||
public boolean isEmptyGenotype() {
|
||||
for ( VCFGenotypeEncoding encoding : mGenotypeAlleles ) {
|
||||
if ( encoding.getType() != VCFGenotypeEncoding.TYPE.UNCALLED )
|
||||
|
|
|
|||
Loading…
Reference in New Issue