Mercurial > repos > pimarin > plasmidfinder
annotate plasmidfinder.xml @ 1:c64d0c156f96 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84-dirty
author | pimarin |
---|---|
date | Wed, 15 Feb 2023 08:34:39 +0000 |
parents | 7c8c8a816114 |
children |
rev | line source |
---|---|
0
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
1 <tool id="plasmidfinder" name="PlasmidFinder" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
2 <description> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
3 Plasmid identification in bacteria. |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
4 </description> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
5 <macros> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
6 <import>macro.xml</import> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
7 </macros> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
8 <expand macro='xrefs'/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
9 <expand macro="requirements" /> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
10 <command detect_errors="aggressive"><![CDATA[ |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
11 mkdir output_dir && |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
12 mkdir temp_dir && |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
13 plasmidfinder.py |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
14 -i '$input.input_file' |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
15 -p '$input.database_name.fields.path' |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
16 -l '$options.min_cov' |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
17 -t '$options.threshold' |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
18 #if $input.input_file.ext == 'fasta' or $input.input_file.ext == 'fasta.gz' |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
19 -mp blastn |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
20 #elif $input.input_file.ext == 'fastqsanger' or $input.input_file.ext == 'fastqsanger.gz' |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
21 -mp kma |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
22 #end if |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
23 -x |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
24 -o output_dir |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
25 -tmp temp_dir |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
26 #*====================================== |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
27 LOG file |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
28 ======================================*# |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
29 | tee '$log_file' |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
30 ]]> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
31 </command> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
32 <inputs> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
33 <section name="input" title="Input parameters" expanded="true"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
34 <param name="input_file" type="data" format="fasta,fasta.gz,fastqsanger,fastqsanger.gz" label="Choose a fasta or fastq file" help="File to be analyzed"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
35 <param name="database_name" type="select" label="PlasmidFinder database"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
36 <options from_data_table="plasmidfinder_database"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
37 <validator message="No PlasmidFinder database is available" type="no_options"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
38 </options> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
39 </param> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
40 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
41 <section name="options" title="Options"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
42 <param name="min_cov" type="float" min="0" max="1" value="0.6" label="Minimal coverage" help=" Fraction of matching sequence on the total target sequence(default: 0.6)"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
43 <param name="threshold" type="float" min="0" max="1" value="0.95" label="Minimal identity" help=" Fraction of shared nucleotide on the match (default: 0.95)"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
44 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
45 <section name="output_files" title="Output file selection"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
46 <param name="output_selection" type="select" display="checkboxes" multiple="true" label="Output files selection"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
47 <option value="data_json">JSON file result</option> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
48 <option value="hit_fasta" selected="true">Matching sequences in the genome for plasmid</option> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
49 <option value="plasmid_fasta" selected="true">Plasmid sequences discovered in the genome</option> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
50 <option value="result_tsv" selected="true">Plasmid match list</option> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
51 <option value="result_txt" selected="true">Plasmid match list in raw format</option> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
52 <option value="logfile">Log file</option> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
53 </param> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
54 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
55 </inputs> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
56 <outputs> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
57 <data name="json_file" format="json" from_work_dir="output_dir/data.json" label="${tool.name} on ${on_string}: data.json"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
58 <filter> "data_json" in output_files['output_selection'] </filter> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
59 </data> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
60 <data name="hit_file" format="fasta" from_work_dir="output_dir/Hit_in_genome_seq.fsa" label="${tool.name} on ${on_string}: hit_in_genome.fasta"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
61 <filter> "hit_fasta" in output_files['output_selection'] </filter> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
62 </data> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
63 <data name="plasmid_file" format="fasta" from_work_dir="output_dir/Plasmid_seqs.fsa" label="${tool.name} on ${on_string}: plasmid.fasta"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
64 <filter> "plasmid_fasta" in output_files['output_selection'] </filter> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
65 </data> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
66 <data name="result_file" format="tabular" from_work_dir="output_dir/results_tab.tsv" label="${tool.name} on ${on_string}: results.tsv"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
67 <filter> "result_tsv" in output_files['output_selection'] </filter> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
68 </data> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
69 <data name="raw_file" format="txt" from_work_dir="output_dir/results.txt" label="${tool.name} on ${on_string}: raw_result.txt"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
70 <filter> "result_txt" in output_files['output_selection'] </filter> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
71 </data> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
72 <data name="log_file" format="txt" from_work_dir="output_dir" label="${tool.name} on ${on_string}: log file"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
73 <filter> "logfile" in output_files['output_selection'] </filter> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
74 </data> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
75 </outputs> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
76 <tests> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
77 <!--test_1 with default value and all output files for contigs --> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
78 <test expect_num_outputs="6"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
79 <section name="input"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
80 <param name="input_file" value="contigs.fasta"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
81 <param name="input_type" value="genome"/> |
1
c64d0c156f96
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84-dirty
pimarin
parents:
0
diff
changeset
|
82 <param name="database_name" value="plasmidfinder_9002e7282dd0_2022-12-20"/> |
0
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
83 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
84 <section name="output_files"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
85 <param name="output_selection" value="data_json,hit_fasta,plasmid_fasta,result_tsv,result_txt,logfile"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
86 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
87 <output name="json_file" value="test_1/data_test1.json" ftype="json" compare="sim_size"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
88 <output name="hit_file" value="test_1/Hit_in_genome_seq_test1.fsa" ftype="fasta"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
89 <output name="plasmid_file" value="test_1/Plasmid_seqs_test1.fsa" ftype="fasta"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
90 <output name="result_file" value="test_1/results_tab_test1.tsv"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
91 <output name="raw_file" value="test_1/results_test1.txt" lines_diff="2"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
92 <output name="log_file" value="test_1/logfile_test1.log" lines_diff="7"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
93 </test> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
94 <!--test_2 with default value and for fastq file --> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
95 <test expect_num_outputs="4"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
96 <section name="input"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
97 <param name="input_file" value="data.fastq.gz"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
98 <param name="input_type" value="raw"/> |
1
c64d0c156f96
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84-dirty
pimarin
parents:
0
diff
changeset
|
99 <param name="database_name" value="plasmidfinder_9002e7282dd0_2022-12-20"/> |
0
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
100 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
101 <section name="output_files"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
102 <param name="output_selection" value="data_json,result_tsv,result_txt,logfile"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
103 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
104 <output name="json_file" value="test_2/data_test2.json" ftype="json" compare="sim_size"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
105 <output name="result_file" value="test_2/results_tab_test2.tsv"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
106 <output name="raw_file" value="test_2/results_test2.txt" lines_diff="2"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
107 <output name="log_file" value="test_2/logfile_test2.log" lines_diff="7"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
108 </test> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
109 <!--test_3 with default value and for fastq file --> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
110 <test expect_num_outputs="3"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
111 <section name="input"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
112 <param name="input_file" value="contigs.fasta"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
113 <param name="input_type" value="genome"/> |
1
c64d0c156f96
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84-dirty
pimarin
parents:
0
diff
changeset
|
114 <param name="database_name" value="plasmidfinder_9002e7282dd0_2022-12-20"/> |
0
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
115 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
116 <section name="options"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
117 <param name="min_cov" value="0.2" /> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
118 <param name="threshold" value="0.6"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
119 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
120 <section name="output_files"> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
121 <param name="output_selection" value="hit_fasta,plasmid_fasta,result_tsv"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
122 </section> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
123 <output name="hit_file" value="test_3/Hit_in_genome_seq_test3.fsa" ftype="fasta"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
124 <output name="plasmid_file" value="test_3/Plasmid_seqs_test3.fsa" ftype="fasta"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
125 <output name="result_file" value="test_3/results_tab_test3.tsv"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
126 </test> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
127 </tests> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
128 <help>< with hundreds sequences. |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
132 **Input** |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
133 PlasmidFinder takes raw data (with a k-mer analysisi) as reads or genome assembly (blastn analysis) to search plasmids. |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
134 **Output** |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
135 Some output files are availables |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
136 - A fasta file with all available sequences detected in the genome |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
137 - A fasta file with all plasmid sequences from the database |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
138 - A summary of the analysis in tabular format |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
139 - A Raw result file in text format |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
140 - A JSON file could be use for other boinformatic analysis |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
141 - A log file with analysis parameters |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
142 |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
143 ]]></help> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
144 <expand macro="citations"/> |
7c8c8a816114
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder commit 2cb90e0f01974c35c0ea84789a3d19c704b91c84
pimarin
parents:
diff
changeset
|
145 </tool> |