Mercurial > repos > iuc > vt_variant_tools
changeset 3:6e073fc99d9c draft default tip
Uploaded
author | iuc |
---|---|
date | Thu, 14 Aug 2014 12:36:27 -0400 |
parents | e76f203fc135 |
children | |
files | vt_normalize.xml |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/vt_normalize.xml Thu Aug 14 10:45:02 2014 -0400 +++ b/vt_normalize.xml Thu Aug 14 12:36:27 2014 -0400 @@ -9,7 +9,7 @@ <command> <![CDATA[ vt @BINARY@ - #if $output_format == 'bcf': + #if str($output_format) == 'bcf': -o normalised.bcf #else: -o normalised.vcf @@ -29,9 +29,11 @@ -r "${reference_source.reference_genome}" #end if - "${ infile }"; + "${ infile }" - #if $output_format == 'bcf': + && + + #if str($output_format) == 'bcf': mv normalised.bcf "${ outfile }"; #else: mv normalised.vcf "${ outfile }";