comparison pep_match.xml @ 2:bf6acfb148a8 draft default tip

planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper commit 040d09319fb0f43fafb1d3ebd99af41bce0f6bfd
author genouest
date Thu, 18 Jul 2024 10:26:43 +0000
parents c57d7d83f3f8
children
comparison
equal deleted inserted replaced
1:c57d7d83f3f8 2:bf6acfb148a8
1 <tool id="peptimapper_pep_match" name="PepMatch" version="2.0"> 1 <tool id="peptimapper_pep_match" name="PepMatch" version="2.1">
2 <description>align PSTs on sequence and cluster hits</description> 2 <description>align PSTs on sequence and cluster hits</description>
3 <requirements> 3 <requirements>
4 <container type="docker">dockerprotim/peptimapper</container> 4 <container type="docker">dockerprotim/peptimapper@sha256:d3eb807d7d5aa155f7b39d05a47420e0a0a9191d5fa867b6ca1be763f8a23bf1</container>
5 </requirements> 5 </requirements>
6 <command detect_errors="exit_code"><![CDATA[ 6 <command detect_errors="exit_code"><![CDATA[
7 ln -s '$fastafile' 'in.fa' && 7 ln -s '$fastafile' 'in.fa' &&
8 ln -s '$tagsfile' 'in.tags' && 8 ln -s '$tagsfile' 'in.tags' &&
9 LXRunPepMatch -D $D -t $t -T $T -d $d 'in.fa' 'in.tags' && 9 LXRunPepMatch -D $D -t $t -T $T -d $d 'in.fa' 'in.tags' &&
10 mv 'in.tags.in.fa.trans.${D}.hit' ${hitsfile} && 10 mv 'in.tags.in.fa.trans.${D}.hit' '${hitsfile}' &&
11 mv 'in.tags.in.fa.trans.${D}.hit.${t}.${T}.${d}.clust' '${clustersfile}' 11 mv 'in.tags.in.fa.trans.${D}.hit.${t}.${T}.${d}.clust' '${clustersfile}'
12 ]]></command> 12 ]]></command>
13 <inputs> 13 <inputs>
14 <param name="tagsfile" type="data" format="txt" label="PSTs file (Text)" help="Peptide sequence tags file generated by PepnovoTag" /> 14 <param name="tagsfile" type="data" format="txt" label="PSTs file (Text)" help="Peptide sequence tags file generated by PepnovoTag" />
15 <param name="fastafile" type="data" format="fasta" label="Chromosome file (Fasta)" help="Chromosome file" /> 15 <param name="fastafile" type="data" format="fasta" label="Chromosome file (Fasta)" help="Chromosome file" />
16 16
17 <param name="D" type="select" label="Mass tolerance" help="uma"> 17 <param name="D" type="select" label="Mass tolerance" help="uma">
18 <option value="0.5" selected="selected">0.5</option> 18 <option value="0.5" selected="true">0.5</option>
19 <option value="0.25">0.25</option> 19 <option value="0.25">0.25</option>
20 <option value="0.025">0.025</option> 20 <option value="0.025">0.025</option>
21 <option value="0.0025">0.0025</option> 21 <option value="0.0025">0.0025</option>
22 <option value="0">0</option> 22 <option value="0">0</option>
23 </param> 23 </param>
24 24
25 <param name="t" type="select" label="Min. hits" help="Minimal hits number per cluster"> 25 <param name="t" type="select" label="Min. hits" help="Minimal hits number per cluster">
26 <option value="2" selected="selected">2</option> 26 <option value="2" selected="true">2</option>
27 <option value="3">3</option> 27 <option value="3">3</option>
28 <option value="4">4</option> 28 <option value="4">4</option>
29 </param> 29 </param>
30 30
31 <param name="T" type="select" label="Min. peptides" help="Minimal peptides number per cluster"> 31 <param name="T" type="select" label="Min. peptides" help="Minimal peptides number per cluster">
32 <option value="2" selected="selected">2</option> 32 <option value="2" selected="true">2</option>
33 <option value="3">3</option> 33 <option value="3">3</option>
34 <option value="4">4</option> 34 <option value="4">4</option>
35 </param> 35 </param>
36 36
37 <param name="d" type="select" label="Distance" help="Maximum distance between two hits to be clustered"> 37 <param name="d" type="select" label="Distance" help="Maximum distance between two hits to be clustered">
38 <option value="500">500</option> 38 <option value="500">500</option>
39 <option value="1000">1000</option> 39 <option value="1000">1000</option>
40 <option value="2000">2000</option> 40 <option value="2000">2000</option>
41 <option value="5000" selected="selected">5000</option> 41 <option value="5000" selected="true">5000</option>
42 <option value="10000">10000</option> 42 <option value="10000">10000</option>
43 <option value="15000">15000</option> 43 <option value="15000">15000</option>
44 <option value="20000">20000</option> 44 <option value="20000">20000</option>
45 <option value="50000">50000</option> 45 <option value="50000">50000</option>
46 <option value="80000">80000</option> 46 <option value="80000">80000</option>