Mercurial > repos > enios > nc_rna
annotate cbind.xml @ 10:2ea01f4f394c draft
Uploaded
author | enios |
---|---|
date | Wed, 12 May 2021 10:17:50 +0000 |
parents | |
children |
rev | line source |
---|---|
10 | 1 <tool id="cbind" name="Cbind" > |
2 <description>cbind horizontally</description> | |
3 <requirements> | |
4 <container type="docker">bianca7/lncrna:cbind</container> | |
5 </requirements> | |
6 <command><![CDATA[ python /var/lib/pandas/rbind.py | |
7 #for $q in $queries | |
8 '${q.input2}' | |
9 #end for | |
10 && mv mergedArray.txt $out_file1 | |
11 ]]></command> | |
12 <inputs> | |
13 <!--param name="input1" type="data" label="Concatenate Dataset"/--> | |
14 <repeat name="queries" title="Dataset"> | |
15 <param name="input2" type="data" label="Select" /> | |
16 </repeat> | |
17 </inputs> | |
18 <outputs> | |
19 <data name="out_file1" format="input" metadata_source="input1"/> | |
20 </outputs> | |
21 </tool> | |
22 |