comparison annotateBed.xml @ 4:607c0576c6ab draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
author iuc
date Wed, 27 Jan 2016 15:15:59 -0500
parents 82aac94b06c3
children 7308cc546a36
comparison
equal deleted inserted replaced
3:2cd7e321d259 4:607c0576c6ab
1 <tool id="bedtools_annotatebed" name="AnnotateBed" version="@WRAPPER_VERSION@.0"> 1 <tool id="bedtools_annotatebed" name="AnnotateBed" version="@WRAPPER_VERSION@.1">
2 <description></description> 2 <description>annotate coverage of features from multiple files</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
7 <expand macro="stdio" /> 7 <expand macro="stdio" />
8 <command> 8 <command>
9 <![CDATA[ 9 <![CDATA[
10
10 bedtools annotate 11 bedtools annotate
11 -i "${inputA}" 12 -i "${inputA}"
12 #if $names.names_select == 'yes': 13 #if $names.names_select == 'yes':
13 -files 14 -files
14 #for $bed in $names.beds: 15 #for $bed in $names.beds:
20 "${bed.inputName}" 21 "${bed.inputName}"
21 #end for 22 #end for
22 #else: 23 #else:
23 #set files = '" "'.join( [ str( $file ) for $file in $names.beds ] ) 24 #set files = '" "'.join( [ str( $file ) for $file in $names.beds ] )
24 -files "${files}" 25 -files "${files}"
26 #set names = '" "'.join( [ str( $name.display_name ) for $name in $names.beds ] )
27 -names "${names}"
25 #end if 28 #end if
26 $strand 29 $strand
27 $counts 30 $counts
28 $both 31 $both
29 > "${output}" 32 > "${output}"