Mercurial > repos > metexplore > met4j_getentities
view GetEntities.xml @ 3:195e17a50532 draft default tip
planemo upload for repository https://forge.inrae.fr/metexplore/met4j-galaxy commit e757d0398a8407d983f1ef3f900b31cafc26e170
| author | metexplore |
|---|---|
| date | Wed, 21 Jan 2026 15:29:47 +0000 |
| parents | d31c63d9ed01 |
| children |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <tool id="met4j_GetEntities" name="GetEntities" version="@TOOL_VERSION@"> <description>Parse a SBML file to return a list of entities composing the network: metabolites, reactions, genes and others.</description> <macros> <import>macros.xml</import> </macros> <expand macro="bio_tools"/> <expand macro="requirements"/> <command detect_errors="exit_code"><![CDATA[met4j attributes.GetEntities -i "$sbml" $printMetabolites $printReactions $printCompartments $printPathways $printGenes $noTypeCol -o "$outputFile" ]]></command> <inputs> <param argument="-i" format="sbml" label="Input SBML file" name="sbml" optional="false" type="data" value=""/> <param argument="-m" checked="false" falsevalue="" label="Extract Metabolites" name="printMetabolites" truevalue="-m" type="boolean" value="false"/> <param argument="-r" checked="false" falsevalue="" label="Extract Reactions" name="printReactions" truevalue="-r" type="boolean" value="false"/> <param argument="-c" checked="false" falsevalue="" label="Extract Compartments" name="printCompartments" truevalue="-c" type="boolean" value="false"/> <param argument="-p" checked="false" falsevalue="" label="Extract Pathways" name="printPathways" truevalue="-p" type="boolean" value="false"/> <param argument="-g" checked="false" falsevalue="" label="Extract Genes" name="printGenes" truevalue="-g" type="boolean" value="false"/> <param argument="-nt" checked="false" falsevalue="" label="Do not write type column" name="noTypeCol" truevalue="-nt" type="boolean" value="false"/> </inputs> <outputs> <data format="tsv" name="outputFile"/> </outputs> <tests/> <help><![CDATA[Parse a SBML file to return a list of entities composing the network: metabolites, reactions, genes and others.The output file is a tabulated file with two columns, one with entity identifiers, and one with the entity type. If no entity type is selected, all of them are returned by default. Only identifiers are written, attributes can be extracted from dedicated apps or from the Sbml2Tab app. @ATTRIBUTION@]]></help> <citations/> </tool>
