Mercurial > repos > galaxyp > proteomiqon_joinquantpepionswithproteins
comparison proteomiqon_joinquantpepionswithproteins.xml @ 0:f7e1c904ac2c draft default tip
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins commit aaf1e94b225eb1b75837a9e65bf8c480d808287f"
author | galaxyp |
---|---|
date | Thu, 16 Sep 2021 19:32:13 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f7e1c904ac2c |
---|---|
1 <tool id="proteomiqon_joinquantpepionswithproteins" name="Proteomiqon JoinQuantPepIonsWithProteins" version="@VERSION@" profile="20.05"> | |
2 <description> | |
3 combines the results from ProteinInference and PSMBasedQuantification. | |
4 </description> | |
5 <macros> | |
6 <token name="@VERSION@">0.0.1</token> | |
7 </macros> | |
8 <requirements> | |
9 <requirement type="package" version="@VERSION@">proteomiqon-joinquantpepionswithproteins</requirement> | |
10 </requirements> | |
11 <command detect_errors="exit_code"><![CDATA[ | |
12 #import re | |
13 #set quant_basename = $re.sub(r'[^\w ,.\-+]','_',$quantifiedpeptides.element_identifier) | |
14 ln -s '$quantifiedpeptides' '${quant_basename}.quant' && | |
15 #set prot_basename = $re.sub(r'[^\w ,.\-+]','_',$inferredproteins.element_identifier) | |
16 ln -s '$inferredproteins' '${prot_basename}.prot' && | |
17 ln -s '$out_quantAndProt' '${quant_basename}.quantAndProt' && | |
18 proteomiqon-joinquantpepionswithproteins -i '${quant_basename}.quant' -ii '${prot_basename}.prot' -o './' | |
19 ]]> | |
20 </command> | |
21 <inputs> | |
22 <param name="quantifiedpeptides" type="data" format="tabular" label="Quantified Peptides" help="Specify Quantified Peptides." /> | |
23 <param name="inferredproteins" type="data" format="tabular" label="Inferred Proteins" help="Specify Inferred Proteins." /> | |
24 </inputs> | |
25 <outputs> | |
26 <data format="tabular" name="out_quantAndProt" /> | |
27 </outputs> | |
28 <tests> | |
29 <test expect_num_outputs="1"> | |
30 <param name="quantifiedpeptides" value="sample.quant"/> | |
31 <param name="inferredproteins" value="sample.prot"/> | |
32 <output name="out_quantAndProt" file="sample_out.quantAndProt"/> | |
33 </test> | |
34 </tests> | |
35 <help> | |
36 <![CDATA[ | |
37 What It Does | |
38 ------------ | |
39 **Disclaimer** this tool needs the results from ProteinInference and PSMBasedQuantification. | |
40 | |
41 Results from PSMBasedQuantification contain detailed information about the quantification of every peptide, but only basic informations about the protein they | |
42 originated from. This information is obtained during the ProteinInference. This tool takes the results from both tools and combines the qauntification information of | |
43 each peptide with the more accurate information about the corresponding protein including its q-value. | |
44 | |
45 Further Reading | |
46 --------------- | |
47 Additional information about the tool can be found in the `documentation <https://csbiology.github.io/ProteomIQon/tools/JoinQuantPepIonsWithProteins.html>`_. | |
48 ]]> | |
49 </help> | |
50 </tool> |