0
|
1 <tool id="draw_amr_matrix" name="PIMA: draw AMR matrix" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
|
|
2 <description>of genes and drugs</description>
|
|
3 <macros>
|
|
4 <import>macros.xml</import>
|
|
5 </macros>
|
|
6 <expand macro="requirements"/>
|
|
7 <command detect_errors="exit_code"><![CDATA[
|
|
8 #import re
|
|
9
|
2
|
10 mkdir amr_feature_hits_dir &&
|
4
|
11 mkdir mutations_dir &&
|
0
|
12 mkdir output_dir &&
|
|
13
|
4
|
14 #if $reference_source.reference_source_selector == 'history':
|
|
15 ln -f -s '$reference_source.ref_file' reference.fa &&
|
|
16 #else:
|
|
17 ln -f -s '$reference_source.ref_file.fields.path' reference.fa &&
|
|
18 #end if
|
|
19
|
2
|
20 #for $i in $amr_feature_hits:
|
0
|
21 #set file_name = $i.file_name
|
|
22 #set identifier = re.sub('[^\s\w\-\\.]', '_', str($i.element_identifier))
|
2
|
23 ln -s '$file_name' 'amr_feature_hits_dir/$identifier' &&
|
0
|
24 #end for
|
|
25
|
|
26 python '$__tool_directory__/draw_amr_matrix.py'
|
4
|
27 --amr_feature_hits_dir 'amr_feature_hits_dir'
|
|
28 #if str($amr_deletions_file) != 'None':
|
|
29 --amr_deletions_file '$amr_deletions_file'
|
|
30 #end if
|
|
31 #if str($amr_mutations_file) != 'None':
|
|
32 --amr_mutations_file '$amr_mutations_file'
|
|
33 #end if
|
|
34 #if str($amr_mutation_regions_file) != 'None':
|
|
35 --amr_mutation_regions_file '$amr_mutation_regions_file'
|
|
36 --region_mutations_output_file '$region_mutations_output_file'
|
|
37 #end if
|
2
|
38 --amr_gene_drug_file '$amr_gene_drug_file'
|
4
|
39 --reference_genome reference.fa
|
|
40 --mutations_dir 'mutations_dir'
|
0
|
41 --output_dir 'output_dir'
|
|
42 #if str($output_process_log) == 'yes':
|
|
43 && mv 'process_log' '$process_log'
|
|
44 #end if
|
|
45 ]]></command>
|
|
46 <inputs>
|
4
|
47 <conditional name="reference_source">
|
|
48 <param name="reference_source_selector" type="select" label="Select a reference genome from your history or use a cached genome index?">
|
|
49 <option value="cached">Use a cached genome index</option>
|
|
50 <option value="history">Select a genome from the history and build the index</option>
|
|
51 </param>
|
|
52 <when value="cached">
|
|
53 <param name="ref_file" type="select" label="Using reference genome" help="Select reference genome">
|
|
54 <options from_data_table="all_fasta">
|
|
55 <filter type="sort_by" column="2"/>
|
|
56 <validator type="no_options" message="No reference genomes are available"/>
|
|
57 </options>
|
|
58 </param>
|
|
59 </when>
|
|
60 <when value="history">
|
|
61 <param name="ref_file" type="data" format="fasta,fastq" label="Select the reference sequence" help="You can upload a FASTA file and use it as reference"/>
|
|
62 </when>
|
|
63 </conditional>
|
2
|
64 <param argument="--amr_feature_hits" format="bed" type="data_collection" collection_type="list" label="Collection of feature hits BED files"/>
|
|
65 <param argument="--amr_deletions_file" type="data" format="bed" optional="true" label="AMR deletions file" help="Optional, leave blank to ignore"/>
|
|
66 <param argument="--amr_mutations_file" type="data" format="tabular,tsv" optional="true" label="AMR mutations file" help="Optional, leave blank to ignore"/>
|
4
|
67 <param argument="--amr_mutation_regions_file" type="data" format="bed" optional="true" label="AMR mutation regions BED file" help="Optional, leave blank to ignore"/>
|
2
|
68 <param argument="--amr_gene_drug_file" type="data" format="tabular,tsv" label="AMR gene drugs file"/>
|
0
|
69 <param name="output_process_log" type="select" display="radio" label="Output process log file?">
|
|
70 <option value="no" selected="true">No</option>
|
|
71 <option value="yes">Yes</option>
|
|
72 </param>
|
|
73 </inputs>
|
|
74 <outputs>
|
4
|
75 <data name="process_log" format="txt" label="${tool.name} on ${on_string} (process log)">
|
0
|
76 <filter>output_process_log == 'yes'</filter>
|
|
77 </data>
|
4
|
78 <data name="region_mutations_output_file" format="tsv" label="${tool.name} on ${on_string} (region mutations)">
|
|
79 <filter>amr_mutation_regions_file not in [None, 'None']</filter>
|
|
80 </data>
|
0
|
81 <collection name="amr_matrix_png" type="list" format="png">
|
|
82 <discover_datasets pattern="(?P<designation>.+)\.(?P<ext>png)" directory="output_dir"/>
|
|
83 </collection>
|
|
84 </outputs>
|
|
85 <tests>
|
|
86 <test>
|
4
|
87 <param name="reference_source_selector" value="history"/>
|
|
88 <param name="ref_file" ftype="fasta" value="ref_genome.fasta"/>
|
2
|
89 <param name="amr_feature_hits">
|
0
|
90 <collection type="list">
|
4
|
91 <element name="amr_pima_md.bed" value="amr_pima_md.bed"/>
|
0
|
92 </collection>
|
|
93 </param>
|
2
|
94 <param name="amr_gene_drug_file" value="amr_gene_drug.tsv" ftype="tsv"/>
|
0
|
95 <output_collection name="amr_matrix_png" type="list" count="1">
|
2
|
96 <element name="contig_1" ftype="png">
|
0
|
97 <assert_contents>
|
2
|
98 <has_size value="25383" delta="100"/>
|
0
|
99 </assert_contents>
|
|
100 </element>
|
|
101 </output_collection>
|
|
102 </test>
|
|
103 </tests>
|
|
104 <help>
|
|
105 **What it does**
|
|
106
|
2
|
107 Accepts a collection of best AMR feature hits, an optional AMR deletions BED file, an optional AMR mutations TSV file and a AMR gene
|
|
108 drug mappings file and draws an AMR matrix.
|
0
|
109 </help>
|
|
110 <expand macro="citations"/>
|
|
111 </tool>
|
|
112
|