Fixed logging of 'out' command line parameter in VCF headers

This commit is contained in:
Phillip Dexheimer 2015-03-18 23:12:13 -04:00
parent bf0c72aab0
commit 3b567d7a98
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ public class VariantContextWriterStub implements Stub<VariantContextWriter>, Var
*/ */
@Override @Override
public String toString() { public String toString() {
return getClass().getName(); return (getOutputFile() == null) ? "(Stream)" : getOutputFile().getAbsolutePath();
} }
/** /**