Mercurial > repos > iuc > deeparg_predict
annotate deeparg_predict.xml @ 1:07801d7ee81f draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 8b3c2a9c92770c45257d95585facba365633718e
author | iuc |
---|---|
date | Fri, 27 Jun 2025 12:41:35 +0000 |
parents | 3953324f6d31 |
children |
rev | line source |
---|---|
0
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
1 <tool id="deeparg_predict" name="DeepARG predict" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
2 <description>Antibiotic Resistance Genes (ARGs) from metagenomes</description> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
3 <macros> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
5 </macros> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
6 <expand macro="xrefs"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
9 ##Used only for test |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
10 #if str($hide_db_build) == 'true': |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
11 deeparg download_data -o '$deeparg_db.fields.path' && |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
12 #end if |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
13 ## |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
14 mkdir -p deeparg_predict_output && |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
15 deeparg predict |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
16 --model '$model' |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
17 -i '$input' |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
18 -o 'deeparg_predict_output/deeparg_predict' |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
19 -d '$deeparg_db.fields.path' |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
20 --type '$type' |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
21 --min-prob $min_prob |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
22 --arg-alignment-identity $arg_alignment_identity |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
23 --arg-alignment-evalue $arg_alignment_evalue |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
24 --arg-alignment-overlap $arg_alignment_overlap |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
25 --arg-num-alignments-per-entry $arg_num_alignments_per_entry |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
26 ]]></command> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
27 <inputs> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
28 <!-- used only for tests, as the deeparg database contains large files that cannot be deleted or reduced. --> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
29 <param name="hide_db_build" type="hidden" value=""/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
30 <!-- --> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
31 <param name="input" type="data" format="fasta" label="Input file"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
32 <param name="deeparg_db" type="select" label="DeepARG database"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
33 <options from_data_table="deeparg"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
34 <filter type="static_value" value="@TOOL_VERSION@" column="db_version"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
35 <validator message="No deeparg database is available" type="no_options"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
36 </options> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
37 </param> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
38 <param argument="--model" type="select" label="Select model to use"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
39 <option value="SS" selected="true">SS (short sequences for reads)</option> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
40 <option value="LS">LS (long sequences for genes)</option> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
41 </param> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
42 <param argument="--type" type="select" label="Molecular data type"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
43 <option value="nucl" selected="true">Nucleotid (default)</option> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
44 <option value="prot">Protein</option> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
45 </param> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
46 <param argument="--min-prob" type="float" min="0" max="1" value="0.8" label="Minimum probability cutoff [Default: 0.8]"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
47 <param argument="--arg-alignment-identity" type="integer" min="0" value="50" label="Identity cutoff for sequence alignment [Default: 50]"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
48 <param argument="--arg-alignment-evalue" type="float" min="0" value="1e-10" label="Evalue cutoff [Default: 1e-10]"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
49 <param argument="--arg-alignment-overlap" type="float" min="0" max="1" value="0.8" label="Alignment read overlap [Default: 0.8]"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
50 <param argument="--arg-num-alignments-per-entry" type="integer" min="0" value="1000" label="Diamond, minimum number of alignments per entry [Default: 1000]"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
51 <section name="output_files" title="Selection of the output files"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
52 <param name="output_selection" type="select" label="Output files selection" display="checkboxes" multiple="true"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
53 <option value="file_ARG_tsv" selected="true">ARG detected with prob higher or equal to --prob in TSV</option> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
54 <option value="file_potential_ARG_tsv" selected="true">ARG detected with prob below --prob in TSV</option> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
55 <option value="file_all_hits_tsv" selected="false">All hits detected in TSV</option> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
56 </param> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
57 </section> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
58 </inputs> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
59 <outputs> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
60 <data name="output_mapping_ARG" format="tabular" from_work_dir="deeparg_predict_output/deeparg_predict.mapping.ARG" label="${tool.name} on ${on_string} : ARG detected (prob higher or equal to --prob)"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
61 <filter>output_files['output_selection'] and "file_ARG_tsv" in output_files['output_selection']</filter> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
62 </data> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
63 <data name="output_mapping_potential_ARG" format="tabular" from_work_dir="deeparg_predict_output/deeparg_predict.mapping.potential.ARG" label="${tool.name} on ${on_string} : Potential ARG (prob below --prob)"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
64 <filter>output_files['output_selection'] and "file_potential_ARG_tsv" in output_files['output_selection']</filter> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
65 </data> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
66 <data name="output_all_hits" format="tabular" from_work_dir="deeparg_predict_output/deeparg_predict.align.daa.tsv" label="${tool.name} on ${on_string} : all hits detected"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
67 <filter>output_files['output_selection'] and "file_all_hits_tsv" in output_files['output_selection']</filter> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
68 </data> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
69 </outputs> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
70 <tests> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
71 <!-- Test 1 --> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
72 <test expect_num_outputs="3"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
73 <param name="hide_db_build" value="true"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
74 <param name="input" value="ORFs.fa" ftype="fasta"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
75 <param name="deeparg_db" value="deeparg_1.0.4-19122024"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
76 <param name="model" value="SS"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
77 <param name="type" value="nucl"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
78 <section name="output_files"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
79 <param name="output_selection" value="file_ARG_tsv,file_potential_ARG_tsv,file_all_hits_tsv"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
80 </section> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
81 <output name="output_mapping_ARG" ftype="tabular"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
82 <assert_contents> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
83 <has_text text="YP_003283625.1|FEATURES|tet(K)|tetracycline|tet(K)"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
84 <has_text text="RPOB2"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
85 </assert_contents> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
86 </output> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
87 <output name="output_mapping_potential_ARG" ftype="tabular"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
88 <assert_contents> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
89 <has_text text="gi:545254650:ref:WP_021551023.1:|FEATURES|mdtB|multidrug|mdtB"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
90 <has_text text="MUXB"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
91 </assert_contents> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
92 </output> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
93 <output name="output_all_hits" ftype="tabular"> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
94 <assert_contents> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
95 <has_size value="226000" delta="10000"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
96 <has_text text="ADV91011.1|FEATURES|RbpA|rifamycin|RbpA"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
97 </assert_contents> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
98 </output> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
99 </test> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
100 </tests> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
101 <help> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
102 DeepARG Predict is a computational tool designed to classify and annotate antibiotic resistance genes (ARGs) from nucleotide or protein sequences |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
103 |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
104 It takes as input a **fasta nucleotide or protein file** containing short (SS model) or long (LS model) sequences |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
105 |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
106 DeepARG output |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
107 --------------- |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
108 |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
109 DeepARG generates two main files: .ARG that contains the sequences with a probability sup or = --prob (0.8 default) and .potential.ARG with sequences containing a probability inf to --prob (0.8 default). The .potential.ARG file can still contain ARG-like sequences, howevere, it is necessary inspect its sequences |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
110 |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
111 The output format for both files consists of the following fields: |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
112 |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
113 * ARG_NAME |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
114 * QUERY_START |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
115 * QUERY_END |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
116 * QUERY_ID |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
117 * PREDICTED_ARG_CLASS |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
118 * BEST_HIT_FROM_DATABASE |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
119 * PREDICTION_PROBABILITY |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
120 * ALIGNMENT_BESTHIT_IDENTITY (%) |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
121 * ALIGNMENT_BESTHIT_LENGTH |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
122 * ALIGNMENT_BESTHIT_BITSCORE |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
123 * ALIGNMENT_BESTHIT_EVALUE |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
124 * COUNTS |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
125 |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
126 If you want to annotate paired-end short read sequencing data use the DeepARG Short Reads tool |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
127 |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
128 </help> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
129 <expand macro="citations"/> |
3953324f6d31
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deeparg commit 0f935507a23e554a7d9e181a278a00440865c3ba
iuc
parents:
diff
changeset
|
130 </tool> |