Mercurial > repos > petr-novak > re_utils
view extract_contigs_from_archive.xml @ 14:62fefa284036 draft
Uploaded
author | petr-novak |
---|---|
date | Fri, 07 Feb 2020 06:06:47 -0500 |
parents | c2c69c6090f0 |
children | 36c418bca8b2 |
line wrap: on
line source
<tool id="extract_contigs" name="Extract contigs from RepeatExplorer2 archive"> <command detect_errors="exit_code"> unzip -p ${RepeatExplorer_archive} contigs.fasta > ${contigs} && unzip -p -j ${RepeatExplorer_archive} "*.aln" > ${aln} </command> <inputs> <param name="RepeatExplorer_archive" label="Archive with RepeatExplorer2 results" type="data" format="zip"/> </inputs> <outputs> <data name="contigs" format="fasta" label="Contigs from RepeatExplorer clustering from data ${RepeatExplorer_archive.hid}" /> <data name="aln" format="txt" label="Contigs from RepeatExplorer clustering in aln format from data ${RepeatExplorer_archive.hid}" /> </outputs> </tool>