annotate abromics_galaxy_json_extractor.xml @ 8:fe7c0554432c draft

planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit 11da23216ea90c4177af3baa9fe2984645af44fc
author ifb-elixirfr
date Tue, 23 Jan 2024 15:41:18 +0000
parents 089c8dda0782
children bdd3a5ca3c38
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
1 <tool id="abromics_galaxy_json_extractor" name="abromics_galaxy_json_extractor" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
2 <description>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
3 Result extractor to json format
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
4 </description>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
5 <macros>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
6 <import>macro.xml</import>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
7 </macros>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
8 <expand macro='edam'/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
9 <expand macro="requirements"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
10 <expand macro="version_command"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
11 <command detect_errors="aggressive"><![CDATA[
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
12 #import re
5
e58c2cd8e624 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit 6afa8c416e3616d50952b8d3deab90e55580c787-dirty
ifb-elixirfr
parents: 3
diff changeset
13 abromics_extract --version &&
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
14 mkdir "abromics_extracted_folder" &&
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
15 #*=================================================================
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
16 Paramaters to add Database and tool version if available
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
17 =================================================================*#
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
18 #set $counter = len($tool_section.tools)-1
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
19
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
20 #*======================================================
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
21 Loop to include some different tool in one time
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
22 ======================================================*#
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
23 #for $i, $tool in enumerate( $tool_section.tools )
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
24 abromics_extract
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
25 $tool.select_tool.tool_list
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
26 --hid $tool.select_tool.input.hid
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
27 "$tool.select_tool.input"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
28 --analysis_software_version "$tool.select_tool.analysis_software_version"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
29 --reference_database_version "$tool.select_tool.reference_database_version"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
30 #if $tool.select_tool.tool_list == "bakta"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
31 #if str($tool.select_tool.annotation_tabular_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
32 --annotation_tabular_path '$tool.select_tool.annotation_tabular_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
33 --annotation_tabular_hid '$tool.select_tool.annotation_tabular_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
34 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
35 #if str($tool.select_tool.annotation_genbank_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
36 --annotation_genbank_path '$tool.select_tool.annotation_genbank_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
37 --annotation_genbank_hid '$tool.select_tool.annotation_genbank_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
38 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
39 #if str($tool.select_tool.annotation_embl_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
40 --annotation_embl_path '$tool.select_tool.annotation_embl_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
41 --annotation_embl_hid '$tool.select_tool.annotation_embl_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
42 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
43 #if str($tool.select_tool.contig_sequences_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
44 --contig_sequences_path '$tool.select_tool.contig_sequences_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
45 --contig_sequences_hid '$tool.select_tool.contig_sequences_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
46 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
47 #if str($tool.select_tool.nucleotide_annotation_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
48 --nucleotide_annotation_path '$tool.select_tool.nucleotide_annotation_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
49 --nucleotide_annotation_hid '$tool.select_tool.nucleotide_annotation_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
50 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
51 #if str($tool.select_tool.amino_acid_annotation_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
52 --amino_acid_annotation_path '$tool.select_tool.amino_acid_annotation_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
53 --amino_acid_annotation_hid '$tool.select_tool.amino_acid_annotation_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
54 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
55 #if str($tool.select_tool.summary_result_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
56 --summary_result_path '$tool.select_tool.summary_result_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
57 --summary_result_hid '$tool.select_tool.summary_result_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
58 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
59 #if str($tool.select_tool.gff_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
60 --gff_file_path "$tool.select_tool.gff_file_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
61 --gff_file_hid "$tool.select_tool.gff_file_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
62 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
63 #if str($tool.select_tool.hypothetical_protein_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
64 --hypothetical_protein_path '$tool.select_tool.hypothetical_protein_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
65 --hypothetical_protein_hid '$tool.select_tool.hypothetical_protein_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
66 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
67 #if str($tool.select_tool.hypothetical_tabular_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
68 --hypothetical_tabular_path '$tool.select_tool.hypothetical_tabular_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
69 --hypothetical_tabular_hid '$tool.select_tool.hypothetical_tabular_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
70 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
71 #if str($tool.select_tool.plot_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
72 --plot_file_path '$tool.select_tool.plot_file_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
73 --plot_file_hid '$tool.select_tool.plot_file_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
74 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
75 #elif $tool.select_tool.tool_list == "bandage"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
76 #if str($tool.select_tool.bandage_plot_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
77 --bandage_plot_path '$tool.select_tool.bandage_plot_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
78 --bandage_plot_hid '$tool.select_tool.bandage_plot_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
79 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
80 #elif $tool.select_tool.tool_list == "bracken"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
81 #if str($tool.select_tool.kraken_report_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
82 --kraken_report_path "$tool.select_tool.kraken_report_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
83 --kraken_report_hid "$tool.select_tool.kraken_report_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
84 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
85 --threshold "$tool.select_tool.threshold"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
86 --read_len "$tool.select_tool.read_len"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
87 --level "$tool.select_tool.level"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
88 #elif $tool.select_tool.tool_list == "fastp"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
89 #if str($tool.select_tool.trimmed_forward_R1_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
90 --trimmed_forward_R1_path '$tool.select_tool.trimmed_forward_R1_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
91 --trimmed_forward_R1_hid '$tool.select_tool.trimmed_forward_R1_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
92 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
93 #if str($tool.select_tool.trimmed_reverse_R2_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
94 --trimmed_reverse_R2_path '$tool.select_tool.trimmed_reverse_R2_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
95 --trimmed_reverse_R2_hid '$tool.select_tool.trimmed_reverse_R2_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
96 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
97 #if str($tool.select_tool.html_report_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
98 --html_report_path '$tool.select_tool.html_report_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
99 --html_report_hid '$tool.select_tool.html_report_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
100 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
101 #elif $tool.select_tool.tool_list == "integronfinder2"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
102 #if str($tool.select_tool.summary_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
103 --summary_file_path "$tool.select_tool.summary_file_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
104 --summary_file_hid "$tool.select_tool.summary_file_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
105 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
106 #elif $tool.select_tool.tool_list == "isescan"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
107 #if str($tool.select_tool.summary_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
108 --summary_path '$tool.select_tool.summary_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
109 --summary_hid '$tool.select_tool.summary_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
110 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
111 #if str($tool.select_tool.annotation_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
112 --annotation_path '$tool.select_tool.annotation_path'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
113 --annotation_hid '$tool.select_tool.annotation_path.hid'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
114 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
115 #if str($tool.select_tool.orf_fna_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
116 --orf_fna_path "$tool.select_tool.orf_fna_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
117 --orf_fna_hid "$tool.select_tool.orf_fna_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
118 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
119 #if str($tool.select_tool.orf_faa_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
120 --orf_faa_path "$tool.select_tool.orf_faa_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
121 --orf_faa_hid "$tool.select_tool.orf_faa_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
122 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
123 #if str($tool.select_tool.is_fna_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
124 --is_fna_path "$tool.select_tool.is_fna_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
125 --is_fna_hid "$tool.select_tool.is_fna_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
126 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
127 #elif $tool.select_tool.tool_list == "kraken2"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
128 #if str($tool.select_tool.seq_classification_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
129 --seq_classification_file_path "$tool.select_tool.seq_classification_file_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
130 --seq_classification_file_hid "$tool.select_tool.seq_classification_file_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
131 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
132 #elif $tool.select_tool.tool_list == "plasmidfinder"
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
133 #if str($tool.select_tool.plasmid_result_tabular_path) != 'None'
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
134 --plasmid_result_tabular_path "$tool.select_tool.plasmid_result_tabular_path"
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
135 --plasmid_result_tabular_hid "$tool.select_tool.plasmid_result_tabular_path.hid"
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
136 #end if
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
137 #if str($tool.select_tool.genome_hit_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
138 --genome_hit_path "$tool.select_tool.genome_hit_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
139 --genome_hit_hid "$tool.select_tool.genome_hit_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
140 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
141 #if str($tool.select_tool.plasmid_hit_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
142 --plasmid_hit_path "$tool.select_tool.plasmid_hit_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
143 --plasmid_hit_hid "$tool.select_tool.plasmid_hit_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
144 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
145 #elif $tool.select_tool.tool_list == "quast"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
146 #if str($tool.select_tool.quast_html_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
147 --quast_html_path "$tool.select_tool.quast_html_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
148 --quast_html_hid "$tool.select_tool.quast_html_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
149 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
150 #elif $tool.select_tool.tool_list == "recentrifuge"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
151 #if str($tool.select_tool.rcf_stat_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
152 --rcf_stat_path "$tool.select_tool.rcf_stat_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
153 --rcf_stat_hid "$tool.select_tool.rcf_stat_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
154 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
155 #if str($tool.select_tool.rcf_html_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
156 --rcf_html_path "$tool.select_tool.rcf_html_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
157 --rcf_html_hid "$tool.select_tool.rcf_html_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
158 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
159 #elif $tool.select_tool.tool_list == "shovill"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
160 #if str($tool.select_tool.contig_graph_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
161 --contig_graph_path "$tool.select_tool.contig_graph_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
162 --contig_graph_hid "$tool.select_tool.contig_graph_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
163 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
164 #if str($tool.select_tool.bam_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
165 --bam_file_path "$tool.select_tool.bam_file_path"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
166 --bam_file_hid "$tool.select_tool.bam_file_path.hid"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
167 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
168 #elif $tool.select_tool.tool_list == "staramr"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
169 #if str($tool.select_tool.mlst_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
170 --mlst_file_path "$tool.select_tool.mlst_file_path"
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
171 --mlst_file_hid "$tool.select_tool.mlst_file_path.hid"
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
172 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
173 #if str($tool.select_tool.plasmidfinder_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
174 --plasmidfinder_file_path "$tool.select_tool.plasmidfinder_file_path"
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
175 --plasmidfinder_file_hid "$tool.select_tool.plasmidfinder_file_path.hid"
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
176 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
177 #if str($tool.select_tool.pointfinder_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
178 --pointfinder_file_path "$tool.select_tool.pointfinder_file_path"
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
179 --pointfinder_file_hid "$tool.select_tool.pointfinder_file_path.hid"
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
180 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
181 #if str($tool.select_tool.setting_file_path) != 'None'
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
182 --setting_file_path "$tool.select_tool.setting_file_path"
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
183 --setting_file_hid "$tool.select_tool.setting_file_path.hid"
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
184 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
185 #elif $tool.select_tool.tool_list == "tabular_file"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
186 --analysis_software_name "$tool.select_tool.analysis_software_name"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
187 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
188 -o "abromics_extracted_folder/$($tool.select_tool.tool_list)_$(i)_output.json"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
189 | tee "$logfile"
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
190 #if $i < $counter
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
191 &&
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
192 #end if
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
193 #end for
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
194 ]]>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
195 </command>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
196 <inputs>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
197 <section name="tool_section" title="Available tools" expanded="true">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
198 <repeat name="tools" title="Tool" min="0">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
199 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
200 <param name="tool_list" type="select" label="Available tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
201 <option value="abricate">abricate</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
202 <option value="bakta">bakta</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
203 <option value="bandage">bandage</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
204 <option value="bracken">bracken</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
205 <option value="fastp">fastp</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
206 <option value="integronfinder2">integronfinder2</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
207 <option value="isescan">isescan</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
208 <option value="kraken2">kraken2</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
209 <option value="multiqc">MultiQC</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
210 <option value="plasmidfinder">plasmidfinder</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
211 <option value="quast">quast</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
212 <option value="recentrifuge">recentrifuge</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
213 <option value="refseqmasher">refseqmasher</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
214 <option value="shovill">shovill</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
215 <option value="staramr">staramr</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
216 <option value="tabular_file">tabular_generic_file</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
217 </param>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
218 <when value="abricate">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
219 <param name="input" type="data" format="tabular" multiple="false" label="Abricate report file" help="Tabular file from abricate output"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
220 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
221 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
222 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
223 <when value="bakta">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
224 <param name="input" type="data" format="json" multiple="false" label="Bakta report file" help="Json file from bakta output"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
225 <param argument="--annotation_tabular_path" type="data" format="tabular" multiple="false" optional="true" label="Bakta annotation file" help="Tabular annotation file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
226 <param argument="--annotation_genbank_path" type="data" format="txt" multiple="false" optional="true" label="Bakta genbank file" help="Genbank annotation file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
227 <param argument="--annotation_embl_path" type="data" format="txt" multiple="false" optional="true" label="Bakta embl file" help="EMBL annotation file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
228 <param argument="--contig_sequences_path" type="data" format="fasta" multiple="false" optional="true" label="Contig sequences" help="Contig sequences files"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
229 <param argument="--hypothetical_protein_path" type="data" format="fasta" multiple="false" optional="true" label="Hypothetical protein" help="Hypothetical protein fasta file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
230 <param argument="--hypothetical_tabular_path" type="data" format="tabular" multiple="false" optional="true" label="Hypothetical annotation" help="Hypothetical protein annotation"/>
2
857426567aca planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools/-/tree/galaxy_dev/abromics_galaxy_json_extractor?ref_type=heads commit b50ef5acc02354fb68dd0e57b371b35156daa0c9
ifb-elixirfr
parents: 0
diff changeset
231 <param argument="--plot_file_path" type="data" format="svg" multiple="false" optional="true" label="Plot file" help="Plot of the annotation in svg format"/>
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
232 <param argument="--summary_result_path" type="data" format="txt" multiple="false" optional="true" label="Bakta summary file" help="Summary file from bakta output"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
233 <param argument="--nucleotide_annotation_path" type="data" format="fasta" multiple="false" optional="true" label="Bakta nucleotide annotation" help="Nucleotide sequence annotation file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
234 <param argument="--amino_acid_annotation_path" type="data" format="fasta" multiple="false" optional="true" label="Bakta protein annotation" help="Amino acid sequence annotation file"/>
2
857426567aca planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools/-/tree/galaxy_dev/abromics_galaxy_json_extractor?ref_type=heads commit b50ef5acc02354fb68dd0e57b371b35156daa0c9
ifb-elixirfr
parents: 0
diff changeset
235 <param argument="--gff_file_path" type="data" format="gff3" multiple="false" optional="true" label="Bakta annotation file" help="Annotation file in gff"/>
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
236 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
237 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
238 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
239 <when value="bandage">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
240 <param name="input" type="data" format="txt,tabular" multiple="false" label="Bandage report file" help="Tabular file from bandage output"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
241 <param argument="--bandage_plot_path" type="data" format="svg" multiple="false" optional="true" label="Bandage plot" help="Bandage visualisation file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
242 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
243 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
244 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
245 <when value="bracken">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
246 <param name="input" type="data" format="txt,tabular" multiple="false" label="Bracken report file" help="Tabular file from bracken output"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
247 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
248 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
249 <param argument="--kraken_report_path" type="data" format="txt,tabular" multiple="false" optional="true" label="Kraken re-estimated report" help="New kraken report from bracken tool"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
250 <param argument="--threshold" type="integer" min="0" optional="true" label="PRIOR on read numbers" help="Prior of read for estimation, default is 0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
251 <param argument="--read_len" type="integer" min="0" optional="true" label="Read length"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
252 <param argument="--level" type="select" label="Taxonomic level estimation" optional="true" help="Level of final abundance (from Domain to subspecies, default on species)">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
253 <option value="D">Domain</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
254 <option value="P">Phylum</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
255 <option value="C">Class</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
256 <option value="O">Order</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
257 <option value="F">Family</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
258 <option value="G">Genus</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
259 <option value="S">Species</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
260 <option value="S+">Subspecies</option>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
261 </param>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
262 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
263 <when value="fastp">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
264 <param name="input" type="data" format="json" multiple="false" label="Fastp report file" help="Fastp result in json format"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
265 <param argument="--trimmed_forward_R1_path" type="data" format="fastq,fastq.gz" optional="true" multiple="false" label="Fastp trimmed R1" help="trimmed file R1"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
266 <param argument="--trimmed_reverse_R2_path" type="data" format="fastq,fastq.gz" optional="true" multiple="false" label="Fastp trimmed R2" help="trimmed file R2"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
267 <param argument="--html_report_path" type="data" format="html" multiple="false" optional="true" label="Fastp report html" help="Fastp result in html format"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
268 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
269 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
270 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
271 <when value="integronfinder2">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
272 <param name="input" type="data" format="txt,tabular" multiple="false" label="Integronfinder report" help="Integron file from integronfinder2"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
273 <param argument="--summary_file_path" type="data" format="txt,tabular" multiple="false" optional="true" label="Summary report" help="Summary file from integronfinder2"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
274 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
275 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
276 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
277 <when value="isescan">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
278 <param name="input" type="data" format="txt,tabular" multiple="false" label="Isescan report" help="IseScan file from integronfinder2"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
279 <param argument="--summary_path" type="data" format="tabular" optional="true" multiple="false" label="summary file" help="ISEscan summary"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
280 <param argument="--annotation_path" type="data" format="gff" optional="true" multiple="false" label="annotation results" help="Annotation in gff file format"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
281 <param argument="--orf_fna_path" type="data" format="fasta" optional="true" multiple="false" label="ORF fna file" help="Nuleotide sequence to the ORFs"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
282 <param argument="--orf_faa_path" type="data" format="fasta" optional="true" multiple="false" label="ORF faa file" help="Amino acid sequence to the ORFs"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
283 <param argument="--is_fna_path" type="data" format="fasta" optional="true" multiple="false" label="IS fna file" help="Nuleotide sequence to the inserted elements"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
284 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
285 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
286 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
287 <when value="kraken2">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
288 <param name="input" type="data" format="txt,tabular" multiple="false" label="kraken report" help="Taxonomic assignation file from kraken2"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
289 <param argument="--seq_classification_file_path" type="data" format="txt,tabular" optional="true" multiple="false" label="Sequence assignation" help="Reads assignation file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
290 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
291 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
292 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
293 <when value="multiqc">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
294 <param name="input" type="data" format="html" multiple="false" label="MultiQC report" help="Html report from MultiQC"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
295 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
296 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
297 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
298 <when value="plasmidfinder">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
299 <param name="input" type="data" format="json" multiple="false" label="Json report" help="Plasmidfinder result from json file"/>
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
300 <param argument="--plasmid_result_tabular_path" type="data" format="tabular" optional="true" multiple="false" label="Result in tabular format" help="Plasmid result in tabular format"/>
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
301 <param argument="--genome_hit_path" type="data" format="fasta" optional="true" multiple="false" label="Genome hits" help="Sequence hit in the analyzed genome"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
302 <param argument="--plasmid_hit_path" type="data" format="fasta" optional="true" multiple="false" label="Plasmid hits" help="Plasmid sequence identified"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
303 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
304 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
305 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
306 <when value="quast">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
307 <param name="input" type="data" format="txt,tabular" multiple="false" label="Quast report" help="Tabular Quast report"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
308 <param argument="--quast_html_path" type="data" format="html" multiple="false" optional="true" label="Quast html report" help="Quast html report"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
309 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
310 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
311 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
312 <when value="recentrifuge">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
313 <param name="input" type="data" format="txt,tabular" multiple="false" label="Recentrifuge data file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
314 <param argument="--rcf_stat_path" type="data" format="txt,tabular" optional="true" multiple="false" label="Recentrifuge stat file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
315 <param argument="--rcf_html_path" type="data" format="html" optional="true" multiple="false" label="Recentrifuge html report file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
316 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
317 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
318 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
319 <when value="refseqmasher">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
320 <param name="input" type="data" format="txt,tabular" multiple="false" label="RefsesMasher results"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
321 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
322 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
323 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
324 <when value="shovill">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
325 <param name="input" type="data" format="fasta" multiple="false" label="Contigs file" help="Contig fasta file from assembly"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
326 <param argument="--contig_graph_path" type="data" format="txt" optional="true" multiple="false" label="Contig graph file" help="Graphic file assembly"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
327 <param argument="--bam_file_path" type="data" format="bam" optional="true" multiple="false" label="Bam file" help="Alignemnt file in bam format"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
328 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
329 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
330 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
331 <when value="staramr">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
332 <param name="input" type="data" format="txt,tabular" multiple="false" label="Resfinder report" help="Resfinder result from starAMR"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
333 <param argument="--mlst_file_path" type="data" format="txt,tabular" optional="true" multiple="false" label="MLST results" help="mlst scheme file result from starAMR"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
334 <param argument="--plasmidfinder_file_path" type="data" optional="true" format="txt,tabular" multiple="false" label="Plasmid results" help="Plasmidfinder result from starAMR"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
335 <param argument="--pointfinder_file_path" type="data" optional="true" format="txt,tabular" multiple="false" label="Pointfinder results" help="PointFinder result from starAMR"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
336 <param argument="--setting_file_path" type="data" optional="true" format="txt,tabular" multiple="false" label="Setting informations" help="Settings file from starAMR"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
337 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
338 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
339 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
340 <when value="tabular_file">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
341 <param name="input" type="data" format="txt,tabular" multiple="false" label="Tabular file type" help="Generic result file in tabular format with header"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
342 <param argument="--analysis_software_name" type="text" multiple="false" optional="true" label="Tool name" help="Tool name which generated the result file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
343 <expand macro="analysis_software_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
344 <expand macro="reference_database_version"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
345 </when>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
346 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
347 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
348 </section>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
349 <param name="log" type="boolean" truevalue="true" falsevalue="" label="Add log" help="Activate/Deactivate the log"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
350 </inputs>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
351 <outputs>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
352 <collection name="output_json" type="list" label="${tool.name} on ${on_string}: abromics formated json results">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
353 <discover_datasets pattern="(?P&lt;designation&gt;.+)\.json" format="json" directory="abromics_extracted_folder" />
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
354 </collection>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
355 <data name="logfile" format="txt" label="${tool.name} on ${on_string}: log file">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
356 <filter> log == True </filter>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
357 </data>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
358 </outputs>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
359 <tests>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
360 <test expect_num_outputs="2"> <!-- TEST_1 abricate with logfile -->
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
361 <section name="tool_section">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
362 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
363 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
364 <param name="tool_list" value="abricate"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
365 <param name="input" value="abricate/report.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
366 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
367 <param name="reference_database_version" value="2.0" />
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
368 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
369 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
370 </section>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
371 <param name="log" value="true"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
372 <output_collection name="output_json" type="list">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
373 <expand macro="element_assert" name="abricate_0_output" text="Enterococcus faecalis V583"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
374 </output_collection>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
375 <output name="logfile" value="abricate_logfile.txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
376 </test>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
377 <test expect_num_outputs="1"> <!-- TEST_2 bakta all files -->
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
378 <section name="tool_section">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
379 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
380 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
381 <param name="tool_list" value="bakta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
382 <param name="input" value="bakta/bakta.json" ftype="json"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
383 <param name="annotation_tabular_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
384 <param name="annotation_genbank_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
385 <param name="annotation_embl_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
386 <param name="contig_sequences_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
387 <param name="hypothetical_protein_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
388 <param name="hypothetical_tabular_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
389 <param name="summary_result_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
390 <param name="nucleotide_annotation_path" value="bakta/bakta_nucleotide_annotation.ffn" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
391 <param name="amino_acid_annotation_path" value="bakta/bakta_aminoacid.faa" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
392 <param name="gff_file_path" value="bakta/bakta_annotation.gff3" ftype="gff3"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
393 <param name="analysis_software_version" value="1.8.1"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
394 <param name="reference_database_version" value="5.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
395 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
396 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
397 </section>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
398 <output_collection name="output_json" type="list" count="1">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
399 <expand macro="element_assert" name="bakta_0_output" text="UniRef50_A0A0H2ZNL3"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
400 </output_collection>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
401 </test>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
402 <test expect_num_outputs="1"> <!-- TEST_3 bakta with no files -->
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
403 <section name="tool_section">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
404 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
405 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
406 <param name="tool_list" value="bakta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
407 <param name="input" value="bakta/bakta.json" ftype="json"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
408 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
409 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
410 </section>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
411 <output_collection name="output_json" type="list" count="1">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
412 <expand macro="element_assert" name="bakta_0_output" text="UniRef50_A0A0H2ZNL3"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
413 </output_collection>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
414 </test>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
415 <test expect_num_outputs="1"> <!-- TEST_4 All tool in repeat -->
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
416 <section name="tool_section">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
417 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
418 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
419 <param name="tool_list" value="abricate"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
420 <param name="input" value="abricate/report.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
421 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
422 <param name="reference_database_version" value="2.0" />
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
423 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
424 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
425 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
426 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
427 <param name="tool_list" value="bakta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
428 <param name="input" value="bakta/bakta.json" ftype="json"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
429 <param name="annotation_tabular_path" value="bakta/bakta_annotation.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
430 <param name="annotation_genbank_path" value="bakta/bakta_gbff.gbff"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
431 <param name="annotation_embl_path" value="bakta/bakta_embl.embl"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
432 <param name="contig_sequences_path" value="bakta/bakta_contigs_sequences.fna" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
433 <param name="hypothetical_protein_path" value="bakta/bakta_hypothetical.faa" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
434 <param name="hypothetical_tabular_path" value="bakta/bakta_hypothetical.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
435 <param name="plot_file_path" value="bakta/bakta_plot.svg"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
436 <param name="summary_result_path" value="bakta/bakta_summary.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
437 <param name="nucleotide_annotation_path" value="bakta/bakta_nucleotide_annotation.ffn" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
438 <param name="amino_acid_annotation_path" value="bakta/bakta_aminoacid.faa" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
439 <param name="gff_file_path" value="bakta/bakta_annotation.gff3" ftype="gff3"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
440 <param name="analysis_software_version" value="1.8.1"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
441 <param name="reference_database_version" value="5.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
442 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
443 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
444 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
445 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
446 <param name="tool_list" value="bandage"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
447 <param name="input" value="bandage/bandage_info.txt" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
448 <param name="bandage_plot_path" value="bandage/bandage_plot.svg"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
449 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
450 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
451 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
452 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
453 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
454 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
455 <param name="tool_list" value="bracken"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
456 <param name="input" value="bracken/bracken_report.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
457 <param name="kraken_report_path" value="bracken/bracken_kraken_report.tsv"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
458 <param name="read_len" value="100"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
459 <param name="level" value="S"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
460 <param name="threshold" value="1"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
461 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
462 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
463 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
464 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
465 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
466 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
467 <param name="tool_list" value="fastp"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
468 <param name="input" value="fastp/fastp_report.json" ftype="json"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
469 <param name="trimmed_forward_R1_path" value="fastp/trimmed_R1.fastq.gz"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
470 <param name="trimmed_reverse_R2_path" value="fastp/trimmed_R2.fastq.gz"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
471 <param name="html_report_path" value="fastp/fastp_report.html"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
472 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
473 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
474 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
475 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
476 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
477 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
478 <param name="tool_list" value="integronfinder2"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
479 <param name="input" value="integronfinder2/results.integrons" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
480 <param name="summary_file_path" value="integronfinder2/results.summary" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
481 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
482 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
483
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
484 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
485 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
486 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
487 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
488 <param name="tool_list" value="isescan"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
489 <param name="input" value="isescan/results.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
490 <param name="summary_path" value="isescan/summary.tsv"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
491 <param name="annotation_path" value="isescan/annotation.gff"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
492 <param name="orf_fna_path" value="isescan/orf.fna"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
493 <param name="orf_faa_path" value="isescan/orf.faa"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
494 <param name="is_fna_path" value="isescan/is.fna"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
495 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
496 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
497 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
498 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
499 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
500 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
501 <param name="tool_list" value="kraken2"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
502 <param name="input" value="kraken2/taxonomy_report.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
503 <param name="seq_classification_file_path" value="kraken2/taxonomy_result.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
504 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
505 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
506 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
507 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
508 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
509 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
510 <param name="tool_list" value="plasmidfinder"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
511 <param name="input" value="plasmidfinder/plasmidfinder_result.json" ftype="json"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
512 <param name="genome_hit_path" value="plasmidfinder/genome_hit.fasta" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
513 <param name="plasmid_hit_path" value="plasmidfinder/plasmid_hit.fasta" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
514 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
515 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
516 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
517 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
518 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
519 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
520 <param name="tool_list" value="quast"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
521 <param name="input" value="quast/quast_result.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
522 <param name="quast_html_path" value="quast/quast_report.html"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
523 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
524 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
525 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
526 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
527 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
528 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
529 <param name="tool_list" value="recentrifuge"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
530 <param name="input" value="recentrifuge/rcf_data.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
531 <param name="rcf_stat_path" value="recentrifuge/rcf_stat.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
532 <param name="rcf_html_path" value="recentrifuge/rcf_report.html"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
533 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
534 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
535 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
536 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
537 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
538 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
539 <param name="tool_list" value="refseqmasher"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
540 <param name="input" value="refseqmasher/refsesqmasher.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
541 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
542 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
543 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
544 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
545 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
546 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
547 <param name="tool_list" value="shovill"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
548 <param name="input" value="shovill/contigs.fa" ftype="fasta"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
549 <param name="contig_graph_path" value="shovill/contigs.gfa" ftype="txt"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
550 <param name="bam_file_path" value="shovill/alignment.bam" ftype="bam"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
551 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
552 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
553 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
554 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
555 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
556 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
557 <param name="tool_list" value="staramr"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
558 <param name="input" value="staramr/resfinder.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
559 <param name="mlst_file_path" value="staramr/mlst.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
560 <param name="plasmidfinder_file_path" value="staramr/plasmidfinder.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
561 <param name="pointfinder_file_path" value="staramr/pointfinder.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
562 <param name="setting_file_path" value="staramr/settings.txt" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
563 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
564 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
565 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
566 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
567 <repeat name="tools">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
568 <conditional name="select_tool">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
569 <param name="tool_list" value="tabular_file"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
570 <param name="input" value="tabular_file/report.tsv" ftype="tabular"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
571 <param name="analysis_software_name" value="test_galaxy"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
572 <param name="analysis_software_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
573 <param name="reference_database_version" value="1.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
574 </conditional>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
575 </repeat>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
576 </section>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
577 <output_collection name="output_json" type="list" count="15">
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
578 <expand macro="element_assert" name="abricate_0_output" text="Enterococcus faecalis V583"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
579 <expand macro="element_assert" name="bakta_1_output" text="UniRef50_A0A0H2ZNL3"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
580 <expand macro="element_assert" name="bandage_2_output" text="3042326"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
581 <expand macro="element_assert" name="bracken_3_output" text="Staphylococcus_aureus"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
582 <expand macro="element_assert" name="fastp_4_output" text="705053822"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
583 <expand macro="element_assert" name="integronfinder2_5_output" text="2353.0"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
584 <expand macro="element_assert" name="isescan_6_output" text="IS200/IS605"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
585 <expand macro="element_assert" name="kraken2_7_output" text="Enterococcus_faecalis_ATCC_29212"/>
8
fe7c0554432c planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit 11da23216ea90c4177af3baa9fe2984645af44fc
ifb-elixirfr
parents: 6
diff changeset
586 <expand macro="element_assert" name="plasmidfinder_8_output" text="repUS12"/>
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
587 <expand macro="element_assert" name="quast_9_output" text="2944723"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
588 <expand macro="element_assert" name="recentrifuge_10_output" text="6.4917947578"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
589 <expand macro="element_assert" name="refseqmasher_11_output" text="GCF_000519925.1"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
590 <expand macro="element_assert" name="shovill_12_output" text="436224"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
591 <expand macro="element_assert" name="staramr_13_output" text="10_Enterococcus_faecalis_S17_L001"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
592 <expand macro="element_assert" name="tabular_file_14_output" text="NP_814691"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
593 </output_collection>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
594 </test>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
595
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
596 </tests>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
597 <help><![CDATA[**What it does**
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
598 ** Tool input**
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
599 abromics_galaxy_json_extractor can use several input type from at least 14 different tools :
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
600
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
601 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
602 | Tools | Version | Default input file| Optional files |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
603 +================+================+===================+============================================================+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
604 | Abricate | 1.0.1 | output.tsv | |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
605 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
606 | Bakta | 1.7.0 | output.json | protein.faa, nucleotide.fna, annotation.gff3, summary.txt |
8
fe7c0554432c planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit 11da23216ea90c4177af3baa9fe2984645af44fc
ifb-elixirfr
parents: 6
diff changeset
607 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
608 | Bandage | 0.8.1 | info.txt | |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
609 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
610 | Bracken | 2.8 | output.tsv | taxonomy.tsv |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
611 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
612 | Fastp | 0.23.2 | output.json | |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
613 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
614 | Integronfinder2| 2.0.2 | output.integrons | output.summary |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
615 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
616 | ISEScan | 1.7.2.3 | output.tsv | is.fna, orf.faa, orf.fna |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
617 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
618 | Kraken2 | 2.1.2 | taxonomy.tsv | reads_assignation.txt |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
619 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
620 | Plasmidfinder | 2.1.6 | output.json | genome_hits.fasta, plasmid_hits.fasta |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
621 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
622 | Quast | 5.2.0 | output.tsv | |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
623 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
624 | Recentrifuge | 1.10.0 | data.tsv | report.html, stat.tsv |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
625 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
626 | Refseqmasher | 0.1.2 | output.tsv | |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
627 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
628 | Shovill | 1.1.0 | contigs.fasta | alignment.bam, contigs.gfa |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
629 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
630 | Staramr | 0.9.1 | resfinder.tsv | mlst.tsv, pointfinder.tsv, plasmidfinder.tsv, settings.tsv |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
631 +----------------+----------------+-------------------+------------------------------------------------------------+
3
1861b7f49aed planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit 12dee18b8a3e5f84bb774bc170895cd3245c57d0
ifb-elixirfr
parents: 2
diff changeset
632 | tabular_file | 0 | output.tsv | no optional files |
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
633 +----------------+----------------+-------------------+------------------------------------------------------------+
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
634
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
635 ** Options **
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
636 You can add a tool version and a database version for related tools.
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
637 For some tools you can add optional files previously produced by the tool
6
089c8dda0782 planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit e7d9e8f7411e216a9e5277803854d23dba615504
ifb-elixirfr
parents: 5
diff changeset
638
0
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
639 ]]></help>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
640 <expand macro="citations"/>
b77b0b1e6c74 planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
ifb-elixirfr
parents:
diff changeset
641 </tool>