Mercurial > repos > lecorguille > xcms_plot_chromatogram
comparison xcms_plot_chromatogram.xml @ 0:fe1f0f16d9e6 draft
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit cfb08142b6bfb78002b4e0d7775adb1a58e66c33-dirty
author | lecorguille |
---|---|
date | Thu, 08 Mar 2018 02:48:44 -0500 |
parents | |
children | e6fdadaf039e |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:fe1f0f16d9e6 |
---|---|
1 <tool id="xcms_plot_chromatogram" name="xcms plot chromatogram" version="@WRAPPER_VERSION@.0"> | |
2 <description>Plot base peak intensity chromatogram (BPI) and total ion chromatogram (TIC) from xcms experience</description> | |
3 | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 | |
8 <expand macro="requirements"/> | |
9 <expand macro="stdio"/> | |
10 | |
11 <command><![CDATA[ | |
12 @COMMAND_XCMS_SCRIPT@/xcms_plot_chromatogram.r | |
13 | |
14 image '$image' | |
15 | |
16 @COMMAND_FILE_LOAD@ | |
17 ]]></command> | |
18 | |
19 <inputs> | |
20 <param name="image" type="data" format="rdata.xcms.raw,rdata.xcms.group,rdata.xcms.retcor,rdata.xcms.fillpeaks,rdata" label="@INPUT_IMAGE_LABEL@" help="@INPUT_IMAGE_HELP@ from: findChromPeaks, groupChromPeaks or adjustRtime" /> | |
21 | |
22 <expand macro="input_file_load"/> | |
23 </inputs> | |
24 | |
25 <outputs> | |
26 <data name="ticsPdf" format="pdf" label="${image.name[:-6]}.TICs.pdf" from_work_dir="TICs.pdf"/> | |
27 <data name="bpisPdf" format="pdf" label="${image.name[:-6]}.BPIs.pdf" from_work_dir="BPIs.pdf" /> | |
28 </outputs> | |
29 | |
30 <tests> | |
31 <test> | |
32 <param name="image" value="faahKO-single.xset.merged.group.retcor.RData"/> | |
33 <expand macro="test_file_load_single"/> | |
34 <output name="ticsPdf" value="TICs.pdf" ftype="pdf" compare="sim_size" delta="600" /> | |
35 <output name="bpisPdf" value="BPIs.pdf" ftype="pdf" compare="sim_size" delta="600" /> | |
36 </test> | |
37 </tests> | |
38 | |
39 <help><![CDATA[ | |
40 | |
41 @HELP_AUTHORS@ | |
42 | |
43 ====================== | |
44 xcms plot chromatogram | |
45 ====================== | |
46 | |
47 ----------- | |
48 Description | |
49 ----------- | |
50 | |
51 This tool will plot base peak intensity chromatogram (BPI) and total ion chromatogram (TIC) from xcms experience | |
52 | |
53 | |
54 ----------------- | |
55 Workflow position | |
56 ----------------- | |
57 | |
58 **Upstream tools** | |
59 | |
60 ========================= ================= =================== ========== | |
61 Name output file format parameter | |
62 ========================= ================= =================== ========== | |
63 xcms.xcmsSet xset.RData rdata.xcms.raw RData file | |
64 ------------------------- ----------------- ------------------- ---------- | |
65 xcms.retcor xset.RData rdata.xcms.retcor RData file | |
66 ========================= ================= =================== ========== | |
67 | |
68 .. image:: xcms_plot_chromatogram_workflow.png | |
69 | |
70 | |
71 ------------ | |
72 Output files | |
73 ------------ | |
74 | |
75 **Total Ion Current (TIC) chromatogram** | |
76 | Sum of intensity (Y) of all ions detected at each retention time(X) | |
77 | |
78 **Base Peak Intensity Chromatogram (BPI)** | |
79 | Sum of intensity (Y) of the most intense peaks at each retention time(X) | |
80 | |
81 --------------------------------------------------- | |
82 | |
83 Changelog/News | |
84 -------------- | |
85 | |
86 **Version 3.0.0.0 - 07/03/2018** | |
87 | |
88 - NEW: This new tool will plot base peak intensity chromatogram (BPI) and total ion chromatogram (TIC) from xcms experience. It will replace the one created by xcmsSet and retcor tools. | |
89 | |
90 ]]></help> | |
91 | |
92 <expand macro="citation" /> | |
93 </tool> |