annotate XSeeker.xml @ 6:adff2b3bc192 draft default tip

" master branch Updating"
author lain
date Mon, 26 Jun 2023 14:47:59 +0000
parents 98f0178217b0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
170213501317 " master branch Updating"
lain
parents: 3
diff changeset
1 <tool id="interactive_tool_xseeker" tool_type="interactive" name="xseeker" version="@TOOL_VERSION@+@GALAXY_PREFIX@">
3
10266818794b Uploaded
lain
parents:
diff changeset
2 <description>Visualization and annotation of LC-MSMS data tool</description>
4
170213501317 " master branch Updating"
lain
parents: 3
diff changeset
3 <macros>
6
adff2b3bc192 " master branch Updating"
lain
parents: 5
diff changeset
4 <token name="@TOOL_VERSION@">1.5.1</token>
4
170213501317 " master branch Updating"
lain
parents: 3
diff changeset
5 <token name="@GALAXY_PREFIX@">0</token>
170213501317 " master branch Updating"
lain
parents: 3
diff changeset
6 </macros>
3
10266818794b Uploaded
lain
parents:
diff changeset
7 <requirements>
5
98f0178217b0 " master branch Updating"
lain
parents: 4
diff changeset
8 <container type="docker">quay.io/pfem/xseeker:@TOOL_VERSION@</container>
3
10266818794b Uploaded
lain
parents:
diff changeset
9 </requirements>
10266818794b Uploaded
lain
parents:
diff changeset
10 <entry_points>
10266818794b Uploaded
lain
parents:
diff changeset
11 <entry_point name="XSeeker visualisation of $infile.display_name" requires_domain="True">
10266818794b Uploaded
lain
parents:
diff changeset
12 <port>8765</port>
10266818794b Uploaded
lain
parents:
diff changeset
13 <url>/</url>
10266818794b Uploaded
lain
parents:
diff changeset
14 </entry_point>
10266818794b Uploaded
lain
parents:
diff changeset
15 </entry_points>
10266818794b Uploaded
lain
parents:
diff changeset
16 <environment_variables>
10266818794b Uploaded
lain
parents:
diff changeset
17 <environment_variable name="HISTORY_ID" strip="True">$__history_id__</environment_variable>
10266818794b Uploaded
lain
parents:
diff changeset
18 <environment_variable name="REMOTE_HOST">${__app__.config.galaxy_infrastructure_url}</environment_variable>
10266818794b Uploaded
lain
parents:
diff changeset
19 <environment_variable name="GALAXY_WEB_PORT">8080</environment_variable>
10266818794b Uploaded
lain
parents:
diff changeset
20 <environment_variable name="GALAXY_URL">${__app__.config.galaxy_infrastructure_url}</environment_variable>
10266818794b Uploaded
lain
parents:
diff changeset
21 <environment_variable name="API_KEY" strip="True">
10266818794b Uploaded
lain
parents:
diff changeset
22 #if $__user__:
10266818794b Uploaded
lain
parents:
diff changeset
23 #for $api_key in $__user__.api_keys:
10266818794b Uploaded
lain
parents:
diff changeset
24 ${api_key.key}
10266818794b Uploaded
lain
parents:
diff changeset
25 #break
10266818794b Uploaded
lain
parents:
diff changeset
26 #end for
10266818794b Uploaded
lain
parents:
diff changeset
27 #end if
10266818794b Uploaded
lain
parents:
diff changeset
28 </environment_variable>
10266818794b Uploaded
lain
parents:
diff changeset
29 <environment_variable name="DOCKER">TRUE</environment_variable>
10266818794b Uploaded
lain
parents:
diff changeset
30 </environment_variables>
6
adff2b3bc192 " master branch Updating"
lain
parents: 5
diff changeset
31 <command detect_errors="exit_code"><![CDATA[
adff2b3bc192 " master branch Updating"
lain
parents: 5
diff changeset
32 cp ${infile} ${outfile}
adff2b3bc192 " master branch Updating"
lain
parents: 5
diff changeset
33 && ln -s ${outfile} /XSeeker/input/test.sqlite
3
10266818794b Uploaded
lain
parents:
diff changeset
34 && /entrypoint.sh
10266818794b Uploaded
lain
parents:
diff changeset
35 ]]>
10266818794b Uploaded
lain
parents:
diff changeset
36 </command>
10266818794b Uploaded
lain
parents:
diff changeset
37 <inputs>
5
98f0178217b0 " master branch Updating"
lain
parents: 4
diff changeset
38 <param name="infile" type="data" format="binary"
98f0178217b0 " master branch Updating"
lain
parents: 4
diff changeset
39 label="An sqlite file processed by XSeeker Preprocessor"
98f0178217b0 " master branch Updating"
lain
parents: 4
diff changeset
40 />
3
10266818794b Uploaded
lain
parents:
diff changeset
41 </inputs>
10266818794b Uploaded
lain
parents:
diff changeset
42 <outputs>
6
adff2b3bc192 " master branch Updating"
lain
parents: 5
diff changeset
43 <data name="outfile" format="sqlite" />
3
10266818794b Uploaded
lain
parents:
diff changeset
44 </outputs>
10266818794b Uploaded
lain
parents:
diff changeset
45 <tests>
10266818794b Uploaded
lain
parents:
diff changeset
46 </tests>
10266818794b Uploaded
lain
parents:
diff changeset
47 <help>
10266818794b Uploaded
lain
parents:
diff changeset
48 <![CDATA[
10266818794b Uploaded
lain
parents:
diff changeset
49 XSeeker is a tool to visualise and annote data from LC-MSMS.
10266818794b Uploaded
lain
parents:
diff changeset
50
10266818794b Uploaded
lain
parents:
diff changeset
51 The prefered workflows to process your data is:
10266818794b Uploaded
lain
parents:
diff changeset
52
10266818794b Uploaded
lain
parents:
diff changeset
53 {mzxml} -> xcms{rdata} -> camera{rdata} -> XSeekerPreparator{sqlite} -> XSeeker
10266818794b Uploaded
lain
parents:
diff changeset
54
10266818794b Uploaded
lain
parents:
diff changeset
55 But it is still possible to only do:
10266818794b Uploaded
lain
parents:
diff changeset
56
10266818794b Uploaded
lain
parents:
diff changeset
57 {mzxml} -> xcms{rdata} -> camera{rdata} -> XSeeker
10266818794b Uploaded
lain
parents:
diff changeset
58
10266818794b Uploaded
lain
parents:
diff changeset
59 This way, you will have to choose the files you want to visualize, but it will take some time to import them.
10266818794b Uploaded
lain
parents:
diff changeset
60
10266818794b Uploaded
lain
parents:
diff changeset
61 XSeeker can output csv, tsv and mzTab files, so annotations can be used in other programs and/or is human readable/writable.
10266818794b Uploaded
lain
parents:
diff changeset
62
10266818794b Uploaded
lain
parents:
diff changeset
63 XSeeker can also output an sqlite file, exactly like the one it takes in input. This file can be used to stop your anotation and resume the process later. It's like an XSeeker save file.
10266818794b Uploaded
lain
parents:
diff changeset
64
10266818794b Uploaded
lain
parents:
diff changeset
65
10266818794b Uploaded
lain
parents:
diff changeset
66 ]]>
10266818794b Uploaded
lain
parents:
diff changeset
67 </help>
10266818794b Uploaded
lain
parents:
diff changeset
68 <citations>
10266818794b Uploaded
lain
parents:
diff changeset
69 <citation type="bibtex">
10266818794b Uploaded
lain
parents:
diff changeset
70 @misc{
10266818794b Uploaded
lain
parents:
diff changeset
71 author = {Lain Pavot - lain.pavot@inrae.fr },
10266818794b Uploaded
lain
parents:
diff changeset
72 title = {{XSeeker - A tool to visualise and annote data from LC-MSMS }},
10266818794b Uploaded
lain
parents:
diff changeset
73 publisher = {INRAE},
10266818794b Uploaded
lain
parents:
diff changeset
74 url = {}
10266818794b Uploaded
lain
parents:
diff changeset
75 }
10266818794b Uploaded
lain
parents:
diff changeset
76 }</citation>
10266818794b Uploaded
lain
parents:
diff changeset
77 </citations>
10266818794b Uploaded
lain
parents:
diff changeset
78 </tool>