comparison Sbml2PathwayNet.xml @ 0:a59d87b81ddf draft

planemo upload for repository https://forgemia.inra.fr/metexplore/met4j-galaxy commit e28ca123295d50b85ba872e5a4720fd72697ecc3
author metexplore
date Thu, 13 Mar 2025 15:49:43 +0000
parents
children 9d5a5edfd631
comparison
equal deleted inserted replaced
-1:000000000000 0:a59d87b81ddf
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <tool id="met4j_Sbml2PathwayNet" name="Sbml2PathwayNet" version="@TOOL_VERSION@">
3 <description>Creation of a Pathway Network representation of a SBML file content</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="bio_tools"/>
8 <expand macro="requirements"/>
9 <command detect_errors="exit_code"><![CDATA[met4j fr.inrae.toulouse.metexplore.met4j_toolbox.convert.Sbml2PathwayNet -i "$inputPath"
10 #if str($inputSide) != 'None':
11 -sc "$inputSide"
12 #end if
13 $removeIsolated
14 $onlySourcesAndSinks
15 #if str($weightFile) != 'None':
16 -cw "$weightFile"
17 #end if
18 $connectors
19 #if str($format):
20 -f "$format"
21 #end if
22 -o "$outputPath"
23 ]]></command>
24 <inputs>
25 <param argument="-i" format="sbml" label="input SBML file" name="inputPath" optional="false" type="data" value=""/>
26 <param argument="-sc" format="txt" label="input Side compound file (recommended)" name="inputSide" optional="true" type="data" value=""/>
27 <param argument="-ri" checked="false" falsevalue="" label="remove isolated nodes" name="removeIsolated" truevalue="-ri" type="boolean" value="false"/>
28 <param argument="-oss" checked="false" falsevalue="" label="consider only metabolites that are source or sink in the pathway (i.e non-intermediary compounds)" name="onlySourcesAndSinks" truevalue="-oss" type="boolean" value="false"/>
29 <param argument="-cw" format="tsv" label="an optional file containing weights for pathway pairs" name="weightFile" optional="true" type="data" value=""/>
30 <param argument="-ncw" checked="false" falsevalue="" label="set number of connecting compounds as weight" name="connectors" truevalue="-ncw" type="boolean" value="false"/>
31 <param argument="-f" label="Format of the exported graphTabulated edge list by default (source id &#9; edge type &#9; target id). Other options include GML, JsonGraph, and tabulated node list (label &#9; node id &#9; node type)." name="format" optional="true" type="select" value="tab">
32 <option value="gml">gml</option>
33 <option selected="true" value="tab">tab</option>
34 <option value="nodeList">nodeList</option>
35 <option value="json">json</option>
36 <option value="matrix">matrix</option>
37 </param>
38 </inputs>
39 <outputs>
40 <data format="txt" name="outputPath"/>
41 </outputs>
42 <tests/>
43 <help><![CDATA[Creation of a Pathway Network representation of a SBML file content
44 Genome-scale metabolic networks are often partitioned into metabolic pathways. Pathways are frequently considered independently despite frequent coupling in their activity due to shared metabolites. In order to decipher the interconnections linking overlapping pathways, this app proposes the creation of "Pathway Network", where two pathways are linked if they share compounds.
45 @ATTRIBUTION@]]></help>
46 <citations/>
47 </tool>