comparison clust_to_gff.xml @ 0:691d8f3aeb1a draft default tip

"planemo upload commit 9db7cd910ae897f1d9ea968be0178cc2faf305d4"
author genouest
date Fri, 10 Dec 2021 10:34:56 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:691d8f3aeb1a
1 <tool id="peptimapper_clust_to_gff" name="ClustToGFF" version="2.0">
2 <description>add clusters locations into GFF files to be integrated into a genome viewer</description>
3 <requirements>
4 <container type="docker">dockerprotim/peptimapper</container>
5 </requirements>
6 <command detect_errors="exit_code"><![CDATA[
7 unzip '${gffdir}' -d gff &&
8 mkdir "outputdir" &&
9 LXClust2Gff gff/* outputdir '${clustersfile}' &&
10 mv *.gff outputdir/ &&
11 zip -r outputdir2 outputdir/* &&
12 mv outputdir2.zip '${gfffiles}'
13 ]]></command>
14 <inputs>
15 <param name="clustersfile" type="data" format="txt" label="Clusters file" help="Clusters file generated by PepMatch" />
16 <param name="gffdir" type="data" label="GFF files repository" help="Zipped repository containing all organism GFF files" />
17 </inputs>
18 <outputs>
19 <data name="gfffiles" format="zip" label="GFF files including clusters locations" />
20 </outputs>
21 <tests>
22 <test>
23 <param name="clustersfile" value="clusttogff/Gamete.5.3.2.5000.clust"/>
24 <param name="gffdir" value="clusttogff/gff3_files_repository.zip"/>
25 <output name="output" file="clusttogff/out.zip" compare="sim_size"/>
26 </test>
27 </tests>
28 <help><![CDATA[
29 **Description**
30
31 ClustToGFF : run LXClust2Gff from the "peptimapper" docker.
32 ClustToGFF adds clusters locations, generated by PepMatch, into GFF annotation files to be integrated into a genome viewer.
33
34 **Integrated by**
35
36 Laetitia Guillot Cloarec
37 PROTIM Biogenouest proteomics Core Facility, Rennes
38 July,2017
39 ]]></help>
40 <citations>
41 <citation type="bibtex">
42 @misc{renameTODO,
43 author = {Protim Core facility},
44 year = {2017},
45 title = {ClustToGFF},
46 url = {protim.eu},
47 }
48 </citation>
49 </citations>
50 </tool>