comparison neo4jsbml.xml @ 7:f76091ce926e draft default tip

planemo upload for repository https://github.com/brsynth/neo4jsbml commit 96a30e92eab3144b924fdba7b63be10b218160a7
author tduigou
date Wed, 24 Jul 2024 08:41:42 +0000
parents 6941e7dc5117
children
comparison
equal deleted inserted replaced
6:f2ababe65b04 7:f76091ce926e
1 <tool id="neo4jsbml" name="neo4jsbml" version="@TOOL_VERSION@" profile="21.09" license="MIT"> 1 <tool id="neo4jsbml" name="neo4jsbml" version="@TOOL_VERSION@" profile="21.09" license="MIT">
2 <description>Import SBML file into Neo4j</description> 2 <description>Import SBML file into Neo4j</description>
3 <macros> 3 <macros>
4 <token name="@TOOL_VERSION@">0.12.0</token> 4 <token name="@TOOL_VERSION@">1.0.1</token>
5 </macros> 5 </macros>
6 <requirements> 6 <requirements>
7 <requirement type="package" version="@TOOL_VERSION@">neo4jsbml</requirement> 7 <requirement type="package" version="@TOOL_VERSION@">neo4jsbml</requirement>
8 </requirements> 8 </requirements>
9 <command detect_errors="exit_code"><![CDATA[ 9 <command detect_errors="exit_code"><![CDATA[
10 python -m neo4jsbml 10 neo4jsbml sbml-to-neo4j
11 --input-auradb-file '$input_auradb_file' 11 --input-auradb-txt '$input_auradb_txt'
12 --input-file-sbml '$input_file_sbml' 12 --input-file-sbml '$input_file_sbml'
13 #if str($input_tag_str) != "" 13 #if str($parameter_tag_property_str) != ""
14 --input-tag-str '$input_tag_str' 14 --parameter-tag-property-str '$parameter_tag_property_str'
15 #end if 15 #end if
16 --input-modelisation-json '$input_modelisation_json' | tee '$output' 16 --input-arrows-json '$input_arrows_json' | tee '$output'
17 ]]></command> 17 ]]></command>
18 <inputs> 18 <inputs>
19 <param name="input_auradb_file" type="data" format="txt" label="Config file provided by AuraDB"/> 19 <param name="input_auradb_txt" type="data" format="txt" label="Config file provided by AuraDB"/>
20 <param name="input_file_sbml" type="data" format="sbml" label="SBML model"/> 20 <param name="input_file_sbml" type="data" format="sbml" label="SBML model"/>
21 <param name="input_tag_str" type="text" label="Identifier of the model"> 21 <param name="parameter_tag_property_str" type="text" label="Identifier of the model">
22 <validator type="regex" message="No special characters allowed">^(?:[\w-]*)$</validator> 22 <validator type="regex" message="No special characters allowed">^(?:[\w-]*)$</validator>
23 </param> 23 </param>
24 <param name="input_modelisation_json" type="data" format="json" label="Arrow's schema"/> 24 <param name="input_arrows_json" type="data" format="json" label="Arrow's schema"/>
25 </inputs> 25 </inputs>
26 <outputs> 26 <outputs>
27 <data name="output" format="txt" label="${tool.name} - log" /> 27 <data name="output" format="txt" label="${tool.name} - log" />
28 </outputs> 28 </outputs>
29 <help><![CDATA[ 29 <help><![CDATA[
64 64
65 - Traceback of the tool 65 - Traceback of the tool
66 ]]></help> 66 ]]></help>
67 <citations> 67 <citations>
68 <citation type="bibtex"> 68 <citation type="bibtex">
69 @unpublished{neo4jsbml 69 @article{gricourt_neo4jsbml_2024,
70 author = {Guillaume Gricourt, Thomas Duigou, Sandra Dérozier, Jean-Loup Faulon}, 70 title = {neo4jsbml: import systems biology markup language data into the graph database {Neo4j}},
71 title = {{Neo4jSbml}}, 71 volume = {12},
72 url = {https://github.com/brsynth/neo4jsbml/}, 72 issn = {2167-8359},
73 url = {https://peerj.com/articles/16726},
74 doi = {10.7717/peerj.16726},
75 urldate = {2024-01-22},
76 journal = {PeerJ},
77 author = {Gricourt, Guillaume and Duigou, Thomas and Dérozier, Sandra and Faulon, Jean-Loup},
78 month = jan,
79 year = {2024},
80 pages = {e16726},
73 } 81 }
74 </citation> 82 </citation>
75 </citations> 83 </citations>
76 </tool> 84 </tool>