comparison tidecluster_annotation.xml @ 0:c701eddc9fec draft

planemo upload for repository https://github.com/kavonrtep/galaxy_packages commit 181f00441ba635991889a85b90fa9741a8c8e978-dirty
author petr-novak
date Tue, 08 Aug 2023 11:26:39 +0000
parents
children 9e77d3afefdd
comparison
equal deleted inserted replaced
-1:000000000000 0:c701eddc9fec
1 <tool id="tidecluster_annotation" name="TideCluster Annotation" version="@TOOL_VERSION@">
2 <macros>
3 <import>macros.xml</import>
4 </macros>
5 <description>Annotate tandem repeats identified by TideCluster using custom library of tandem repeats</description>
6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[
8 #set $prefix = 'tidecluster'
9 mkdir extracted &&
10 unzip '$input_archive' -d extracted && cd extracted &&
11 TideCluster.py annotation
12 -pr '$prefix'
13 -l '$library'
14 -c \${GALAXY_SLOTS:-1}
15 &&
16 cp '${prefix}_annotation.gff3' '$gff3_annotation'
17 &&
18 cp '${prefix}_annotation.tsv' '$tsv_annotation'
19 ]]></command>
20 <inputs>
21 <param type="data" name="input_archive" format="zip" label="Output archive from previous TideCluster run" help="The zip archive containing the output from a previous TideCluster run."/>
22 <param type="data" name="library" format="fasta" label="Library of tandem repeats" help="Path to library of tandem repeats."/>
23 </inputs>
24 <outputs>
25 <data name="gff3_annotation" format="gff3" label="${tool.name} on ${on_string}: GFF3 TideCluster Annotated Output"/>
26 <data name="tsv_annotation" format="tsv" label="${tool.name} on ${on_string}: TSV TideCluster Annotated Output"/>
27 </outputs>
28 <help><![CDATA[
29 **TideCluster Annotation Step**
30
31 This step of TideCluster is responsible for annotating the tandem repeats using a library of tandem repeats. The consensus sequences from TideHunter for each cluster are examined by RepeatMasker against a library of tandem repeats. The resulting annotation for each tandem repeat is used to update the information in the GFF3 file.
32
33 **Inputs:**
34
35
36 - Output archive from previous TideCluster run: The zip archive containing the output from a previous TideCluster run.
37 - Library of tandem repeats: FASTA library with tandem repeats, Library must be in RepeatMasker format
38
39 **Outputs:**
40
41 - GFF3 TideCluster Annotated Output: GFF3 file with tandem repeats annotated by RepeatMasker. Attribute Annotation is added to GFF3 file.
42 - TSV TideCluster Annotated Output: Summarized annotation for each TRC cluster in a tab-delimited format.
43 ]]></help>
44 <citations>
45 <!-- Add citations here -->
46 </citations>
47 </tool>