comparison humann2_join_tables.xml @ 4:12103efd0e34 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2 commit f24d561fc65cc7204e53a6a65014130aaa65aa57"
author iuc
date Fri, 19 Jun 2020 07:47:04 -0400
parents 9ada8e95bdd0
children 300fd72ce167
comparison
equal deleted inserted replaced
3:47f3c9a16649 4:12103efd0e34
1 <tool id="humann2_join_tables" name="Join" version="@WRAPPER_VERSION@.0"> 1 <tool id="humann2_join_tables" name="Join" version="@WRAPPER_VERSION@.1">
2 <description>HUMAnN2 generated tables</description> 2 <description>HUMAnN2 generated tables</description>
3 <macros> 3 <macros>
4 <import>humann2_macros.xml</import> 4 <import>humann2_macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements"/> 6 <expand macro="requirements"/>
7 <expand macro="version"/> 7 <expand macro="version"/>
8 <command detect_errors="exit_code"><![CDATA[ 8 <command detect_errors="exit_code"><![CDATA[
9 mkdir tmp_dir 9 mkdir tmp_dir
10 && 10 &&
11 #for $table in $input_table 11 #for $table in $input_table
12 cp '$table' 'tmp_dir' && 12 #set orig_filename=$table.element_identifier
13 #set new_filename='_'.join($orig_filename.split(' '))
14 cp '$table' 'tmp_dir/$new_filename' &&
13 #end for 15 #end for
14 humann2_join_tables 16 humann2_join_tables
15 -i 'tmp_dir' 17 -i 'tmp_dir'
16 -o '$joined_table' 18 -o '$joined_table'
17 ]]></command> 19 ]]></command>