Mercurial > repos > metexplore > met4j_idmapper
comparison IdMapper.xml @ 0:828670ca9292 draft default tip
planemo upload for repository https://forge.inrae.fr/metexplore/met4j-galaxy commit 71335d4a636672d264cc4f443c07856907571928
| author | metexplore |
|---|---|
| date | Fri, 21 Nov 2025 10:21:05 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:828670ca9292 |
|---|---|
| 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 <tool id="met4j_IdMapper" name="IdMapper" version="@TOOL_VERSION@"> | |
| 3 <description>Map external metabolite identifiers (kegg, metanetx, pubchem CID...) to metabolite ids from a SBML file</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 mapping.IdMapper -i "$sbmlPath" | |
| 10 -id "$inputPath" | |
| 11 -db "$db" | |
| 12 $na | |
| 13 -o "$outputPath" | |
| 14 ]]></command> | |
| 15 <inputs> | |
| 16 <param argument="-i" format="sbml" label="input SBML file" name="sbmlPath" optional="false" type="data" value=""/> | |
| 17 <param argument="-id" format="tsv" label="input external id file (one per line)" name="inputPath" optional="false" type="data" value=""/> | |
| 18 <param argument="-db" label="name of the referenced database annotations to map against, as listed in identifiers.org base uri" name="db" optional="false" type="text" value=""> | |
| 19 <sanitizer invalid_char="_"> | |
| 20 <valid initial="string.printable"/> | |
| 21 </sanitizer> | |
| 22 </param> | |
| 23 <param argument="-na" checked="false" falsevalue="" label="Output id without matching annotation in model, with NA value" name="na" truevalue="-na" type="boolean" value="false"/> | |
| 24 </inputs> | |
| 25 <outputs> | |
| 26 <data format="tsv" name="outputPath"/> | |
| 27 </outputs> | |
| 28 <tests/> | |
| 29 <help><![CDATA[Map external metabolite identifiers (kegg, metanetx, pubchem CID...) to metabolite ids from a SBML file. | |
| 30 The SBML file is expected to contain annotations in MIRIAM format for the selected database: | |
| 31 i.e, <species> entries in the sbml should contain an <annotation> field where there is references to the given database.check identifiers.org for valid database names and associated base URIs. | |
| 32 The input id file should contain one id per line. The output is a tab delimited file with two columns: query id, sbml metabolite id (one line per match) | |
| 33 @ATTRIBUTION@]]></help> | |
| 34 <citations/> | |
| 35 </tool> |
