1
|
1 <tool id="extract_contigs" name="Extract contigs from RepeatExplorer2 archive">
|
|
2 <command detect_errors="exit_code">
|
|
3 unzip -p ${RepeatExplorer_archive} contigs.fasta > ${contigs}
|
2
|
4 &&
|
|
5 unzip -p -j ${RepeatExplorer_archive} "*.aln" > ${aln}
|
1
|
6 </command>
|
|
7
|
|
8 <inputs>
|
|
9 <param name="RepeatExplorer_archive" label="Archive with RepeatExplorer2 results" type="data" format="zip"/>
|
|
10 </inputs>
|
|
11
|
|
12 <outputs>
|
9
|
13 <data name="contigs" format="fasta" label="Contigs from RepeatExplorer clustering from data ${RepeatExplorer_archive.hid}" />
|
|
14 <data name="aln" format="txt" label="Contigs from RepeatExplorer clustering in aln format from data ${RepeatExplorer_archive.hid}" />
|
1
|
15 </outputs>
|
|
16 </tool>
|