diff leftalign.xml @ 25:bf27106652f3 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
author iuc
date Wed, 08 Feb 2017 12:45:05 -0500
parents 52aed7d9ed2b
children 977a5301b66d
line wrap: on
line diff
--- a/leftalign.xml	Sun Sep 25 09:48:42 2016 -0400
+++ b/leftalign.xml	Wed Feb 08 12:45:05 2017 -0500
@@ -1,6 +1,9 @@
 <?xml version="1.0"?>
-<tool id="bamleftalign" name="BamLeftAlign" version="1.0.2.29">
+<tool id="bamleftalign" name="BamLeftAlign" version="@DEPENDENCY_VERSION@-1">
     <description> indels in BAM datasets</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
     <requirements>
         <requirement type="package" version="1.0.2.29">freebayes</requirement>
         <requirement type="package" version="0.1.19">samtools</requirement>
@@ -8,48 +11,48 @@
     <stdio>
         <exit_code range="1:" />
     </stdio>
-    <command>
+    <command><![CDATA[
         ##set up input files
         #set $reference_fasta_filename = "localref.fa"
         #if str( $reference_source.reference_source_selector ) == "history":
-            ln -s "${reference_source.ref_file}" "${reference_fasta_filename}" &amp;&amp;
-            samtools faidx "${reference_fasta_filename}" 2&gt;&amp;1 || echo "Error running samtools faidx for leftalign" &gt;&amp;2 &amp;&amp;
+            ln -s '${reference_source.ref_file}' '${reference_fasta_filename}' &&
+            samtools faidx "${reference_fasta_filename}" 2>&1 || echo "Error running samtools faidx for leftalign" >&2 &&
         #else:
             #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path )
         #end if
 
-        ##finished setting up inputs
-        
         ##start leftalign commandline
-        samtools view -bh "${input_bam}" | bamleftalign
-        --fasta-reference "${reference_fasta_filename}"
-        -c
-        --max-iterations "${iterations}"
-        ##outputs
-        > "${output_bam}"
-    </command>
+        cat '${input_bam}' |
+        bamleftalign
+            --fasta-reference '${reference_fasta_filename}'
+            -c
+            --max-iterations "${iterations}"
+            > '${output_bam}'
+    ]]></command>
     <inputs>
         <conditional name="reference_source">
-            <param name="reference_source_selector" type="select" label="Choose the source for the reference list">
+            <param name="reference_source_selector" type="select" label="Choose the source for the reference genome">
                 <option value="cached">Locally cached</option>
                 <option value="history">History</option>
             </param>
             <when value="cached">
-                <param name="input_bam" type="data" format="bam" label="Select BAM dataset to leftalign">
+                <param name="input_bam" type="data" format="bam" label="Select alignment file in BAM format">
                     <validator type="unspecified_build" />
-                    <validator type="dataset_metadata_in_data_table" table_name="fasta_indexes" metadata_name="dbkey" metadata_column="1" message="Sequences are not currently available for the specified build." />
+                    <validator type="dataset_metadata_in_data_table" table_name="fasta_indexes" metadata_name="dbkey"
+                               metadata_column="1" message="Sequences are not currently available for the specified build." />
                 </param>
-                <param name="ref_file" type="select" label="Using reference genome">
+                <param name="ref_file" type="select" label="Using reference genome" argument="--fasta-reference">
                     <options from_data_table="fasta_indexes"></options>
                     <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/>
                 </param>
             </when>
             <when value="history"> 
                 <param name="input_bam" type="data" format="bam" label="BAM dataset to re-align" />
-                <param name="ref_file" type="data" format="fasta" label="Using reference file" />
+                <param name="ref_file" type="data" format="fasta" label="Using reference file" argument="--fasta-reference" />
             </when>
         </conditional>
-        <param name="iterations" type="integer" value="5" label="Maximum number of iterations" help="Iterate the left-realignment no more than this many times" />
+        <param name="iterations" type="integer" value="5" label="Maximum number of iterations"
+               help="Iterate the left-realignment no more than this many times" argument="--max-iterations" />
     </inputs>
     <outputs>
         <data format="bam" name="output_bam" label="${tool.name} on ${on_string} (alignments)" />
@@ -67,17 +70,7 @@
 
 When calling indels, it is important to homogenize the positional distribution of insertions and deletions in the input by using left realignment. Left realignment will place all indels in homopolymer and microsatellite repeats at the same position, provided that doing so does not introduce mismatches between the read and reference other than the indel. This method is computationally inexpensive and handles the most common classes of alignment inconsistency.
 
-This is leftalign utility from FreeBayes package developed and maintained by Erik Garrison (https://github.com/ekg/freebayes).
+This is leftalign utility from FreeBayes package.
     </help>
-    <citations>
-        <citation type="bibtex">
-          @misc{1207.3907,
-          Author = {Erik Garrison},
-          Title = {Haplotype-based variant detection from short-read sequencing},
-          Year = {2012},
-          Eprint = {arXiv:1207.3907},
-          url = {http://arxiv.org/abs/1207.3907}
-          }
-        </citation>
-    </citations>
+    <expand macro="citations" />
 </tool>