Mercurial > repos > lcottret > met4j
comparison tools/convert/Sbml2Tab/Sbml2Tab.xml.bak @ 0:3cdcfdae8bd2 draft default tip
"planemo upload for repository https://forgemia.inra.fr/metexplore/met4j-galaxy commit a58b6f8a6dde6ef64da64ee50395dc5bc848167a-dirty"
| author | lcottret |
|---|---|
| date | Tue, 31 May 2022 07:45:16 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:3cdcfdae8bd2 |
|---|---|
| 1 <?xml version="1.0" encoding="UTF-8"?> | |
| 2 <tool id="met4j_Sbml2Tab" name="Sbml2Tab" version="0.9.1"> | |
| 3 <description>Create a tabulated file from a SBML file</description> | |
| 4 <xrefs> | |
| 5 <xref type="bio.tools">met4j</xref> | |
| 6 </xrefs> | |
| 7 <requirements> | |
| 8 <container type="singularity">oras://registry.forgemia.inra.fr/metexplore/met4j/met4j-singularity:0.9.1-SNAPSHOT</container> | |
| 9 </requirements> | |
| 10 <command detect_errors="exit_code"><![CDATA[sh /usr/bin/met4j.sh convert.Sbml2Tab#if str($i): | |
| 11 -i "$i" | |
| 12 #end if | |
| 13 #if str($r): | |
| 14 -r "$r" | |
| 15 #end if | |
| 16 -in "$in" | |
| 17 -out "$out" | |
| 18 ]]></command> | |
| 19 <inputs> | |
| 20 <param argument="-i" label="[-->] String for irreversible reaction" name="i" optional="true" type="text"> | |
| 21 <sanitizer invalid_char="_"> | |
| 22 <valid initial="string.printable"/> | |
| 23 </sanitizer> | |
| 24 </param> | |
| 25 <param argument="-r" label="[<==>] String for reversible reaction" name="r" optional="true" type="text"> | |
| 26 <sanitizer invalid_char="_"> | |
| 27 <valid initial="string.printable"/> | |
| 28 </sanitizer> | |
| 29 </param> | |
| 30 <param argument="-in" format="format" label="Sbml file" name="in" optional="false" type="data"/> | |
| 31 </inputs> | |
| 32 <outputs> | |
| 33 <data format="tsv" name="out"/> | |
| 34 </outputs> | |
| 35 <help><![CDATA[Create a tabulated file from a SBML file]]></help> | |
| 36 <tests> | |
| 37 <test> | |
| 38 <param name="in" value="toy_model.xml" /> | |
| 39 <output name="out" ftype="tsv" > | |
| 40 <assert_contents> | |
| 41 <has_n_lines n="8"></has_n_lines> | |
| 42 <has_n_columns n="9"></has_n_columns> | |
| 43 <has_text text="2.0 E[c] --> D[c]"></has_text> | |
| 44 <has_text text="A[c] <==> B[c]"></has_text> | |
| 45 </assert_contents> | |
| 46 </output> | |
| 47 </test> | |
| 48 <test> | |
| 49 <param name="in" value="toy_model.xml" /> | |
| 50 <param name="i" value="->" /> | |
| 51 <param name="r" value="=" /> | |
| 52 <output name="out" ftype="tsv" > | |
| 53 <assert_contents> | |
| 54 <has_n_lines n="8"></has_n_lines> | |
| 55 <has_n_columns n="9"></has_n_columns> | |
| 56 <has_text text="2.0 E[c] -> D[c]"></has_text> | |
| 57 <has_text text="A[c] = B[c]"></has_text> | |
| 58 </assert_contents> | |
| 59 </output> | |
| 60 </test> | |
| 61 </tests> | |
| 62 </tool> |
