comparison neo4jsbml.xml @ 0:748d0a0925cb draft

planemo upload for repository https://github.com/brsynth/neo4jsbml commit 513db7f056db275f3f5d8d1337d39ff66012d89f
author tduigou
date Mon, 09 Oct 2023 10:27:18 +0000
parents
children baf9eed5353b
comparison
equal deleted inserted replaced
-1:000000000000 0:748d0a0925cb
1 <tool id="neo4jsbml" name="neo4jsbml" version="@TOOL_VERSION@" profile="21.09" license="MIT">
2 <description>Import SBML file into Neo4j</description>
3 <macros>
4 <token name="@TOOL_VERSION@">0.12.0</token>
5 </macros>
6 <requirements>
7 <requirement type="package" version="@TOOL_VERSION@">neo4jsbml</requirement>
8 </requirements>
9 <command detect_errors="exit_code"><![CDATA[
10 python -m neo4jsbml
11 --input-auradb-file '$input_auradb_file'
12
13 --input-file-sbml '$input_file_sbml'
14 #if str($input_tag_str) != ""
15 --input-tag-str '$input_tag_str'
16 #end if
17 --input-modelisation-json '$input_modelisation_json' > '$output_log'
18 ]]></command>
19 <inputs>
20 <param name="input_auradb_file" type="data" format="txt" label="Config file provided by AuraDB"/>
21 <param name="input_file_sbml" type="data" format="sbml" label="SBML model"/>
22 <param name="input_tag_str" type="text" label="Identifier of the model"/>
23 <param name="input_modelisation_json" type="data" format="json" label="Arrow's schema"/>
24 </inputs>
25 <outputs>
26 <data name="output_log" format="txt" label="${tool.name} - log" />
27 </outputs>
28 <help><![CDATA[
29 Neo4jSbml
30 =========
31
32 Step 1
33 ------
34
35 Create a schema with `Arrows <https://arrows.app>`_
36
37 Rules:
38 - Nodes are labelled based on SBML object name as defined in the `SBML specification <https://sbml.org>`_
39 - Properties are labelled based on SBML object properties as defined the `SBML specification <https://sbml.org>`_
40
41 Step 2
42 ------
43 Export your schema at the JSON format.
44
45 Step 3
46 ------
47
48 Import your data with `neo4jsbml` into Neo4j.
49 - Use either a configuration file `ini` or individual parameters
50 - Password needs to be store in a file for safety security
51 - If you have multiple model in the database, pass a `tag` to identify the model loaded into the database if you want to avoid collision
52
53 Inputs
54 ------
55
56 Database parameters
57 - **Protocol**: choose the protocol (default: neo4j)
58 - **Url of the database**: define the url of the database
59 - **Port of the database**: define the port of the database (default: 7687)
60 - **Username of the database**: User name of the database
61 - **Password of the database**: file with the password
62 - **Database name**: database name
63
64 Input
65 - **SBML model**: SBML model
66 - **Identifier of the model**: Associate an ID to the nodes
67 - **Arrow's schema**: Schema created with Arrow
68
69 Ouput
70 -----
71
72 - Traceback of the tool
73 ]]></help>
74 <citations>
75 <citation type="bibtex">
76 @unpublished{neo4jsbml
77 author = {Guillaume Gricourt, Thomas Duigou, Sandra Dérozier, Jean-Loup Faulon},
78 title = {{Neo4jSbml}},
79 url = {https://github.com/brsynth/neo4jsbml/},
80 }
81 </citation>
82 </citations>
83 </tool>