Merge pull request #887 from broadinstitute/pd_vcf_cmdline_hdr

Fixed logging of 'out' command line parameter in VCF headers
This commit is contained in:
Geraldine Van der Auwera 2015-03-25 00:48:55 -04:00
commit dfa18a8fc6
1 changed files with 1 additions and 1 deletions

View File

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