view extract_contigs_from_archive.xml @ 21:f4ed6a65a2ff draft

Uploaded
author petr-novak
date Thu, 27 Jul 2023 09:46:13 +0000
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  &gt; ${contigs}
    &amp;&amp;
    unzip -p -j ${RepeatExplorer_archive} "*.aln"  &gt; ${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>