annotate target_screen.xml @ 0:d4c2d5bc0524 draft

planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
author recetox
date Thu, 26 Sep 2024 13:03:05 +0000
parents
children 6d51be3d7bb5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
1 <tool id="target_screen" name="MS target screening" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01" license="MIT">
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
2 <description>Extract peaks from recetox-aplcms tables using a list of target ions</description>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
3 <macros>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
4 <token name="@TOOL_VERSION@">0.1.0</token>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
5 <token name="@VERSION_SUFFIX@">0</token>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
6 </macros>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
7
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
8 <requirements>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
9 <requirement type="package" version="2.2.3">pandas</requirement>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
10 <requirement type="package" version="17.0.0">pyarrow</requirement>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
11 </requirements>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
12
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
13 <command detect_errors="exit_code"><![CDATA[
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
14 python3 '${__tool_directory__}/target_screen.py' --peaks '$peaks' --markers '$markers' --output '$hits' --ppm $ppm --rt_tol $rt
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
15 ]]></command>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
16
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
17 <inputs>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
18 <param name="peaks" type="data" format="parquet"/>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
19 <param name="markers" type="data" format="tabular"/>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
20 <param name="ppm" type="integer" min="0" max="1000" value="10" label="ppm" help="Tolerance for peak filtering in ppm." />
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
21 <param name="rt" type="integer" min="0" max="100" value="10" label="rt tolerance" help="Toelrance regarding retention time to filter out peaks" />
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
22 </inputs>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
23
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
24 <outputs>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
25 <data name="hits" format="tabular" label="${tool.name} on ${on_string}" />
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
26 </outputs>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
27
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
28 <tests>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
29 <test>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
30 <param name="peaks" value="target_screen/peaks.parquet"/>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
31 <param name="markers" value="target_screen/markers.tsv"/>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
32 <output name="hits" value="target_screen/out.tsv"/>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
33 </test>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
34 </tests>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
35 <help><![CDATA[
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
36
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
37 .. class:: infomark
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
38
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
39 **What it does**
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
40
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
41 This tool pulls out peaks from a table given a list of markers.
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
42 The markers are matched based on m/z values with a specified ppm tolerance and matched based on retention time with a tolerance in units of retention time.
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
43 ]]></help>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
44 <citations>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
45 <citation type="doi">10.25080/Majora-92bf1922-00a</citation>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
46 </citations>
d4c2d5bc0524 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/misc commit 94322884bede7ddb9f2a9166952dd0115bdb4e49
recetox
parents:
diff changeset
47 </tool>