Permalink
Cannot retrieve contributors at this time
29 lines (29 sloc)
906 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <tool id="catdc" name="Concatenate datasets (in docker)" version="1.0.0"> | |
| <description>tail-to-head</description> | |
| <requirements> | |
| <container type="docker">busybox:ubuntu-14.04</container> | |
| </requirements> | |
| <command><![CDATA[ | |
| echo "Galaxy slots passed through contain as \$GALAXY_SLOTS" && | |
| cat '$input1' | |
| #for $q in $queries | |
| '${q.input2}' | |
| #end for | |
| > '$out_file1' && | |
| echo 'Work dir output' > working_file | |
| ]]></command> | |
| <inputs> | |
| <param name="input1" type="data" label="Concatenate Dataset"/> | |
| <repeat name="queries" title="Dataset"> | |
| <param name="input2" type="data" label="Select" /> | |
| </repeat> | |
| </inputs> | |
| <outputs> | |
| <data name="out_file1" format="input" metadata_source="input1"/> | |
| <data name="out_file2" format="txt" from_work_dir="working_file" /> | |
| </outputs> | |
| <tests> | |
| </tests> | |
| <help> | |
| </help> | |
| </tool> |