Mercurial > repos > iuc > argnorm
comparison argnorm.xml @ 0:26168d6b86f2 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm commit cc4c7a0c31ae4bed0c1f0955f3aa72ccdec3b132
| author | iuc |
|---|---|
| date | Wed, 28 Aug 2024 20:27:07 +0000 |
| parents | |
| children | 82c355310c7b |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:26168d6b86f2 |
|---|---|
| 1 <tool id="argnorm" name="argNorm" version="@VERSION@+galaxy0" profile="22.05"> | |
| 2 <description>a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO)</description> | |
| 3 <macros> | |
| 4 <token name="@VERSION@">0.6.0</token> | |
| 5 </macros> | |
| 6 <xrefs> | |
| 7 <xref type="bio.tools">argnorm</xref> | |
| 8 </xrefs> | |
| 9 <requirements> | |
| 10 <requirement type="package" version="@VERSION@">argnorm</requirement> | |
| 11 </requirements> | |
| 12 <command detect_errors="exit_code"><![CDATA[ | |
| 13 argnorm | |
| 14 '$tool' | |
| 15 --db '$db' | |
| 16 -i '$input' | |
| 17 -o '$output' | |
| 18 $hamronized | |
| 19 ]]></command> | |
| 20 <inputs> | |
| 21 <param type="data" name="input" format="tsv,txt" label="Specify input file" help="-i" /> | |
| 22 <param type="select" name="tool" label="The tool you used to do ARG annotation" help="[tool]" > | |
| 23 <option value="deeparg" selected="true">DeepARG</option> | |
| 24 <option value="argsoap">ARGs_OAP</option> | |
| 25 <option value="abricate">ABRicate</option> | |
| 26 <option value="resfinder">ResFinder</option> | |
| 27 <option value="amrfinderplus">AMRFinderPlus</option> | |
| 28 <option value="groot">Groot</option> | |
| 29 </param> | |
| 30 <param type="select" argument="--db" label="The database you used to do ARG annotation"> | |
| 31 <option value="sarg" selected="true">SARG</option> | |
| 32 <option value="ncbi">NCBI</option> | |
| 33 <option value="resfinder">ResFinder</option> | |
| 34 <option value="deeparg" selected="true">DeepARG</option> | |
| 35 <option value="amrfinderplus">AMRFinderPlus</option> | |
| 36 <option value="megares">MEGARes</option> | |
| 37 <option value="argannot">ARG-ANNOT</option> | |
| 38 <option value="groot-resfinder">Groot ResFinder database </option> | |
| 39 <option value="groot-argannot">Groot ARG-ANNOT database </option> | |
| 40 <option value="groot-card">Groot CARD database </option> | |
| 41 <option value="groot-db">Groot DB (combining all sequences in ResFinder, ARG-annot and CARD)</option> | |
| 42 <option value="groot-core-db">Groot Core DB (combining sequences that are present in each of ResFinder, ARG-annot and CARD databases)</option> | |
| 43 </param> | |
| 44 <param name="hamronized" type="boolean" label="If the input is hamronized" truevalue="--hamronized" falsevalue="" optional="true" help="Use this if the input is hamronized (processed using the hAMRonization tool)" /> | |
| 45 </inputs> | |
| 46 <outputs> | |
| 47 <data name="output" format="tsv" label="${tool.name} on ${on_string} : ARG normalized table" /> | |
| 48 </outputs> | |
| 49 <tests> | |
| 50 <!-- Test 1 : input : tsv, output : tsv, tool : groot --> | |
| 51 <test> | |
| 52 <param name="input" value="resfinder_PSM7J199_R2.report"/> | |
| 53 <param name="tool" value="groot"/> | |
| 54 <param name="db" value="groot-resfinder"/> | |
| 55 <output name="output" file="groot-resfinder-results.tsv"/> | |
| 56 </test> | |
| 57 <!-- Test 2 : input : txt, output : tsv, tool : argsoap --> | |
| 58 <test> | |
| 59 <param name="input" value="blastout.filtered.txt"/> | |
| 60 <param name="tool" value="argsoap"/> | |
| 61 <param name="db" value="sarg"/> | |
| 62 <output name="output" file="blastout.filtered.argnorm.tsv"/> | |
| 63 </test> | |
| 64 <!-- Test 3 : input : tsv, output : tsv, tool : deeparg, hamronize : true --> | |
| 65 <test> | |
| 66 <param name="input" value="deeparg_hamronize.tsv"/> | |
| 67 <param name="tool" value="deeparg"/> | |
| 68 <param name="db" value="deeparg"/> | |
| 69 <param name="hamronized" value="true"/> | |
| 70 <output name="output" file="deeparg_hamronize_argnorm_results.tsv"/> | |
| 71 </test> | |
| 72 </tests> | |
| 73 <help><![CDATA[ | |
| 74 | |
| 75 argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database. | |
| 76 | |
| 77 argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to. | |
| 78 | |
| 79 ]]></help> | |
| 80 <citations> | |
| 81 <citation type="doi">https://github.com/BigDataBiology/argNorm</citation> | |
| 82 </citations> | |
| 83 </tool> |
