changeset 6:d67bfd79bf6c draft default tip

Uploaded
author bgruening
date Thu, 14 Aug 2014 12:37:17 -0400
parents b425a93b4da6
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:44:32 2014 -0400
+++ b/vt_normalize.xml	Thu Aug 14 12:37:17 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 }";