diff tools/naive_variant_caller.xml @ 8:d5f866df45ae

Uploaded
author blankenberg
date Thu, 29 Jan 2015 15:02:01 -0500
parents 8398666758e3
children 4fab5fce1adb
line wrap: on
line diff
--- a/tools/naive_variant_caller.xml	Wed Feb 26 12:37:00 2014 -0500
+++ b/tools/naive_variant_caller.xml	Thu Jan 29 15:02:01 2015 -0500
@@ -46,10 +46,10 @@
      --allow_out_of_bounds_positions
      
      #if str( $advanced_options.advanced_options_selector ) == "advanced":
-         --coverage_dtype "${advanced_options.coverage_dtype}"
+         #if str( $advanced_options.coverage_dtype ) != "guess":
+             --coverage_dtype "${advanced_options.coverage_dtype}"
+         #end if
          ${advanced_options.safe}
-     #else
-         --coverage_dtype "uint64"
      #end if 
   </command>
   <inputs>
@@ -107,10 +107,11 @@
         </when>
         <when value="advanced">
             <param name="coverage_dtype" type="select" label="Choose the dtype to use for storing coverage information" help="This affects the maximum recorded value for a position, e.g. uint8 would be 255 coverage, but will require the least amount of RAM">
+                <option value="guess" selected="True">Guess</option>
                 <option value="uint8">uint8</option>
                 <option value="uint16">uint16</option>
                 <option value="uint32">uint32</option>
-                <option value="uint64" selected="True">uint64</option>
+                <option value="uint64">uint64</option>
             </param>
             <param name="safe" type="boolean" truevalue="--safe" falsevalue="" checked="False" label="Be extra safe"/>
         </when>