comparison phosphopeptide_kinase_mapping.xml @ 0:56658e35798d draft default tip

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/phosphopeptide_kinase_mapping commit d256bec9d43378291734e2b2a93bdbfcc2d83f61"
author galaxyp
date Thu, 04 Nov 2021 19:37:36 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:56658e35798d
1 <tool id="phosphopeptide_kinase_mapping" name="PhosphoPeptide Upstream Kinase Mapping" version="0.1.0" python_template_version="3.5">
2 <requirements>
3 <requirement type="package" version="5.22.0.1">perl</requirement>
4 </requirements>
5 <command detect_errors="exit_code"><![CDATA[
6 perl '$__tool_directory__/PhosphoPeptide_Upstream_Kinase_Mapping.pl'
7 -i '$phophopeptide_intensities'
8 -f '$protein_fasta'
9 -n '$networkin'
10 -m '$p_sty_motifs'
11 -p '$psp_kinase_substrate'
12 -r '$psp_regulatory_sites'
13 -P $phospho_type
14 -F $merge_function
15 -o 'phophopeptides.tsv'
16 ]]></command>
17 <inputs>
18 <param name="phophopeptide_intensities" type="data" format="tabular" label="Phosphopeptide intensity file"
19 help="generate by MaxQuant Phosphopeptide Intensity"/>
20 <param name="protein_fasta" type="data" format="fasta" label="Protein fasta database" />
21 <param name="networkin" type="data" format="tabular" label="NetworKIN file" />
22 <param name="p_sty_motifs" type="data" format="tabular" label="pSTY_Motifs file" />
23 <param name="psp_kinase_substrate" type="data" format="tabular" label="PSP_Kinase_Substrate_Dataset" />
24 <param name="psp_regulatory_sites" type="data" format="tabular" label="PSP_Regulatory_sites" />
25 <param name="phospho_type" type="select" label="phospho type">
26 <option value="sty" selected="true">sty</option>
27 <option value="y">y</option>
28 </param>
29 <param name="merge_function" type="select" label="Merge identical phospho site intensities by">
30 <option value="sum" selected="true">sum</option>
31 <option value="average">average</option>
32 </param>
33 </inputs>
34 <outputs>
35 <data name="output" format="tabular" from_work_dir="phophopeptides.tsv"/>
36 </outputs>
37 <help><![CDATA[
38 TODO: Fill in help.
39 ]]></help>
40 </tool>