Mercurial > repos > greg > vsnp_get_snps
annotate vsnp_get_snps.xml @ 14:44b84d32883c draft default tip
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
author | greg |
---|---|
date | Mon, 15 Nov 2021 23:14:34 +0000 |
parents | cd636b0e4f95 |
children |
rev | line source |
---|---|
10 | 1 <tool id="vsnp_get_snps" name="vSNP: get SNPs" version="@WRAPPER_VERSION@.1+galaxy0" profile="@PROFILE@"> |
0 | 2 <description></description> |
3 | 3 <macros> |
4 <import>macros.xml</import> | |
5 </macros> | |
0 | 6 <requirements> |
10 | 7 <expand macro="openpyxl_requirement"/> |
8 <expand macro="pandas_requirement"/> | |
9 <expand macro="pyvcf_requirement"/> | |
10 <expand macro="xlrd_requirement"/> | |
0 | 11 </requirements> |
12 <command detect_errors="exit_code"><![CDATA[ | |
3 | 13 #import re |
14 | |
0 | 15 #set input_vcf_dir = 'input_vcf_dir' |
16 #set output_json_avg_mq_dir = 'output_json_avg_mq_dir' | |
17 #set output_json_snps_dir = 'output_json_snps_dir' | |
18 #set output_snps_dir = 'output_snps_dir' | |
3 | 19 |
0 | 20 mkdir -p $input_vcf_dir && |
21 mkdir -p $output_json_avg_mq_dir && | |
22 mkdir -p $output_json_snps_dir && | |
23 mkdir -p $output_snps_dir && | |
3 | 24 |
12 | 25 #if str($input_additional_zc_vcf_collection_cond.input_additional_zc_vcf_collection) =='yes': |
26 #set dbkey = '?' | |
27 #for $i in $input_additional_zc_vcf_collection_cond.input_vcf_collection: | |
28 #if str($dbkey) == '?': | |
29 #set dbkey = $i.metadata.dbkey | |
30 #else if str($dbkey) != $i.metadata.dbkey: | |
13
cd636b0e4f95
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit cab8ee43e902a3ae7b0fd6b06842c4b5c221af25"
greg
parents:
12
diff
changeset
|
31 >&2 echo "The dbkeys associated with the zero coverage VCF files with SNPs found in closely related isolate groups are not unique, check ${i.name}" && exit 1 |
12 | 32 #end if |
33 #set vcf_identifier = re.sub('[^\s\w\-]', '_', str($i.element_identifier)) | |
34 ln -s '${i}' '$input_vcf_dir/${vcf_identifier}' && | |
35 #end for | |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
36 #if str($dbkey) == '?': |
12 | 37 >&2 echo "The dbkey must be set for the zero coverage VCF files with SNPs found in closely related isolate groups" && exit 1 |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
38 #end if |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
39 #end if |
3 | 40 #if str($input_zc_vcf_type_cond.input_zc_vcf_type) == "single": |
41 #set zc_vcf_identifier = re.sub('[^\s\w\-]', '_', str($input_zc_vcf.element_identifier)) | |
42 ln -s '${input_zc_vcf}' '$input_vcf_dir/${zc_vcf_identifier}' && | |
0 | 43 #else |
44 #for $i in $input_zc_vcf_type_cond.input_zc_vcf_collection: | |
3 | 45 #set zc_vcf_identifier = re.sub('[^\s\w\-]', '_', str($i.element_identifier)) |
46 ln -s '${i}' '$input_vcf_dir/${zc_vcf_identifier}' && | |
0 | 47 #end for |
48 #end if | |
3 | 49 #if str($input_excel_cond.input_excel_param) == 'yes': |
50 #if str($input_excel_cond.excel_source_cond.excel_source) == 'cached': | |
51 #set excel_file = 'No genome specified for input VCF (database) file(s)' | |
0 | 52 #set excel_fields = $__app__.tool_data_tables['vsnp_excel'].get_fields() |
10 | 53 ## The value of excel_fields is a nested list that looks like this. |
3 | 54 ## [['AF2122', 'Mbovis_define_filter.xlsx', '~/tool-data/vsnp/AF2122/excel/Mbovis_define_filter.xlsx', 'Excel file for AF2122'],...] |
0 | 55 #for $i in $excel_fields: |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
56 #if str($i[0]) == $dbkey: |
0 | 57 #set excel_file = $i[2] |
58 #break | |
59 #end if | |
60 #end for | |
61 #else: | |
3 | 62 #set excel_file = $input_excel_cond.excel_source_cond.input_excel |
0 | 63 #end if |
64 #end if | |
65 python '$__tool_directory__/vsnp_get_snps.py' | |
3 | 66 --ac $ac |
67 #if str($input_excel_cond.input_excel_param) == 'yes': | |
68 --input_excel '$excel_file' | |
0 | 69 #end if |
3 | 70 $all_isolates |
71 --input_vcf_dir '$input_vcf_dir' | |
72 --min_mq $min_mq | |
73 --min_quality_score $min_quality_score | |
74 --output_json_avg_mq_dir '$output_json_avg_mq_dir' | |
75 --output_json_snps_dir '$output_json_snps_dir' | |
76 --output_snps_dir '$output_snps_dir' | |
0 | 77 --output_summary '$output_summary' |
3 | 78 --processes \${GALAXY_SLOTS:-8} |
79 --quality_score_n_threshold $quality_score_n_threshold | |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
80 --dbkey '$dbkey' |
0 | 81 ]]></command> |
82 <inputs> | |
83 <conditional name="input_zc_vcf_type_cond"> | |
84 <param name="input_zc_vcf_type" type="select" label="Choose the category of the files to be analyzed"> | |
3 | 85 <option value="collection" selected="true">A collection of zero coverage VCF files</option> |
86 <option value="single">A single zero coverage VCF file</option> | |
0 | 87 </param> |
88 <when value="single"> | |
3 | 89 <param name="input_zc_vcf" type="data" format="vcf" label="Zero coverage VCF file"/> |
0 | 90 </when> |
91 <when value="collection"> | |
3 | 92 <param name="input_zc_vcf_collection" format="vcf" type="data_collection" collection_type="list" label="Collection of zero coverage VCF files"/> |
0 | 93 </when> |
94 </conditional> | |
12 | 95 <conditional name="input_additional_zc_vcf_collection_cond"> |
96 <param name="input_additional_zc_vcf_collection" type="select" label="Include an additional collection of curated zero-coverage VCF files?"> | |
97 <option value="no" selected="true">No</option> | |
98 <option value="yes">Yes</option> | |
99 </param> | |
100 <when value="no"/> | |
101 <when value="yes"> | |
102 <param name="input_vcf_collection" format="vcf" type="data_collection" collection_type="list" label="Collection of zero coverage VCF files with SNPs found in closely related isolate groups"/> | |
103 </when> | |
104 </conditional> | |
3 | 105 <param name="ac" type="integer" min="0" value="2" label="Allele count threshold" help="At least 1 position must have this value for a SNP to be added to a group"/> |
106 <param name="min_mq" type="integer" min="0" value="56" label="Map quality threshold" help="At least 1 position must have a higher MQ value for a SNP to be added to a group"/> | |
107 <param name="min_quality_score" type="integer" min="0" value="150" label="Quality score threshold" help="At least 1 position must have a higher quality score for a SNP to be added to a group"/> | |
108 <param name="quality_score_n_threshold" type="integer" min="0" value="150" label="Minimum quality score N value for alleles" help="Alleles are marked as N for quality scores between this value and the minimum quality score value above"/> | |
109 <conditional name="input_excel_cond"> | |
110 <param name="input_excel_param" type="select" label="Use Excel file for grouping and filtering?"> | |
0 | 111 <option value="yes" selected="true">Yes</option> |
112 <option value="no">No</option> | |
113 </param> | |
114 <when value="yes"> | |
3 | 115 <conditional name="excel_source_cond"> |
116 <param name="excel_source" type="select" label="Choose the source for the Excel file"> | |
0 | 117 <option value="cached">locally cached</option> |
118 <option value="history">from history</option> | |
119 </param> | |
120 <when value="cached"> | |
3 | 121 <param name="input_excel" type="select" label="Excel file"> |
122 <options from_data_table="vsnp_excel"> | |
123 <validator type="no_options" message="No built-in Excel grouping and filtering datasets are available"/> | |
124 </options> | |
0 | 125 </param> |
126 </when> | |
127 <when value="history"> | |
3 | 128 <param name="input_excel" type="data" format="xlsx" label="Excel file"/> |
0 | 129 </when> |
130 </conditional> | |
131 </when> | |
132 <when value="no"/> | |
133 </conditional> | |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
134 <param name="all_isolates" type="boolean" truevalue="--all_isolates" falsevalue="" checked="true" label="Create a group containing all isolates?"/> |
0 | 135 </inputs> |
136 <outputs> | |
3 | 137 <collection name="snps" type="list" label="${tool.name} on ${on_string} (SNPs)"> |
138 <discover_datasets pattern="__name_and_ext__" directory="output_snps_dir"/> | |
0 | 139 </collection> |
3 | 140 <collection name="json_avg_mq" type="list" label="${tool.name} on ${on_string} (average mq)"> |
141 <discover_datasets pattern="__name_and_ext__" directory="output_json_avg_mq_dir"/> | |
0 | 142 </collection> |
3 | 143 <collection name="json_snps" type="list" label="${tool.name} on ${on_string} (SNPs as json)"> |
144 <discover_datasets pattern="__name_and_ext__" directory="output_json_snps_dir"/> | |
0 | 145 </collection> |
3 | 146 <data name="output_summary" format="html" label="${tool.name} on ${on_string} (summary)"/> |
0 | 147 </outputs> |
148 <tests> | |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
149 <!-- |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
150 Unfortunately the test files cannot be gzipped since Galaxy changes the file names |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
151 to be something like 00-0121_WI_Cervid_99-A_vcf_gz, and the VCF Reader requires |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
152 gzipped files to have a .gz extension. The exception is |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
153 UnicodeDecodeError: 'utf-8' codec can't decode byte 0x8b in position 1: invalid start byte |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
154 --> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
155 <!-- A single vcf input, no excel file, all_isolates is False --> |
3 | 156 <test expect_num_outputs="4"> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
157 <param name="input_zc_vcf_type" value="single"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
158 <param name="input_zc_vcf" value="input_zc_vcf.vcf" ftype="vcf" dbkey="89"/> |
12 | 159 <param name="input_additional_zc_vcf_collection" value="yes"/> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
160 <param name="input_vcf_collection"> |
0 | 161 <collection type="list"> |
162 <element name="SRR8073662_zc.vcf" value="SRR8073662_zc.vcf" dbkey="89"/> | |
163 <element name="SRR1792272_zc.vcf" value="SRR1792272_zc.vcf" dbkey="89"/> | |
164 </collection> | |
165 </param> | |
3 | 166 <param name="input_excel_param" value="no"/> |
10 | 167 <param name="all_isolates" value=""/> |
3 | 168 <output_collection name="snps" type="list" count="1"> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
169 <element name="all_vcf" ftype="fasta"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
170 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
171 <has_size value="150"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
172 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
173 </element> |
0 | 174 </output_collection> |
3 | 175 <output_collection name="json_avg_mq" type="list" count="1"> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
176 <element name="all_vcf" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
177 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
178 <has_size value="551"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
179 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
180 </element> |
0 | 181 </output_collection> |
3 | 182 <output_collection name="json_snps" type="list" count="1"> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
183 <element name="all_vcf" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
184 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
185 <has_size value="876"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
186 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
187 </element> |
0 | 188 </output_collection> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
189 <output name="output_summary" ftype="html"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
190 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
191 <has_size value="303"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
192 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
193 </output> |
0 | 194 </test> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
195 <!-- An input collection, no excel file, all_isolates is False --> |
3 | 196 <test expect_num_outputs="4"> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
197 <param name="input_zc_vcf_type" value="collection"/> |
3 | 198 <param name="input_zc_vcf_collection"> |
199 <collection type="list"> | |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
200 <element name="BCG_Pasteur_Unknown_FR_SRR8886989.vcf" value="BCG_Pasteur_Unknown_FR_SRR8886989.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
201 <element name="BCG_Tokyo_Unknown_JP_DRR029468.vcf" value="BCG_Tokyo_Unknown_JP_DRR029468.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
202 </collection> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
203 </param> |
12 | 204 <param name="input_additional_zc_vcf_collection" value="yes"/> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
205 <param name="input_vcf_collection"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
206 <collection type="list"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
207 <element name="01_1787_FL_Zoo_Jaguar.vcf" value="01_1787_FL_Zoo_Jaguar.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
208 <element name="02_5877_MEX_TX_Fed.vcf" value="02_5877_MEX_TX_Fed.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
209 <element name="02_0585_COA_TX_Fed.vcf" value="02_0585_COA_TX_Fed.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
210 </collection> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
211 </param> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
212 <param name="input_excel_param" value="no"/> |
10 | 213 <param name="all_isolates" value=""/> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
214 <output_collection name="snps" type="list" count="1"> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
215 <element name="all_vcf" ftype="fasta"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
216 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
217 <has_size value="5226"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
218 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
219 </element> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
220 </output_collection> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
221 <output_collection name="json_avg_mq" type="list" count="1"> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
222 <element name="all_vcf" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
223 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
224 <has_size value="24332"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
225 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
226 </element> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
227 </output_collection> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
228 <output_collection name="json_snps" type="list" count="1"> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
229 <element name="all_vcf" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
230 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
231 <has_size value="38798"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
232 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
233 </element> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
234 </output_collection> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
235 <output name="output_summary" ftype="html"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
236 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
237 <has_size value="303"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
238 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
239 </output> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
240 </test> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
241 <!-- An input collection, an excel file, all_isolates is False --> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
242 <test expect_num_outputs="4"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
243 <param name="input_zc_vcf_type" value="collection"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
244 <param name="input_zc_vcf_collection"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
245 <collection type="list"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
246 <element name="BCG_Pasteur_Unknown_FR_SRR8886989.vcf" value="BCG_Pasteur_Unknown_FR_SRR8886989.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
247 <element name="BCG_Tokyo_Unknown_JP_DRR029468.vcf" value="BCG_Tokyo_Unknown_JP_DRR029468.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
248 </collection> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
249 </param> |
12 | 250 <param name="input_additional_zc_vcf_collection" value="yes"/> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
251 <param name="input_vcf_collection"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
252 <collection type="list"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
253 <element name="01_1787_FL_Zoo_Jaguar.vcf" value="01_1787_FL_Zoo_Jaguar.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
254 <element name="02_5877_MEX_TX_Fed.vcf" value="02_5877_MEX_TX_Fed.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
255 <element name="02_0585_COA_TX_Fed.vcf" value="02_0585_COA_TX_Fed.vcf" dbkey="89"/> |
3 | 256 </collection> |
257 </param> | |
258 <param name="input_excel_param" value="yes"/> | |
259 <param name="input_excel" value="89"/> | |
10 | 260 <param name="all_isolates" value=""/> |
3 | 261 <output_collection name="snps" type="list" count="1"> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
262 <element name="Mbovis-17" ftype="fasta"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
263 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
264 <has_size value="749"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
265 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
266 </element> |
3 | 267 </output_collection> |
268 <output_collection name="json_avg_mq" type="list" count="1"> | |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
269 <element name="Mbovis-17" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
270 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
271 <has_size value="10884"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
272 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
273 </element> |
3 | 274 </output_collection> |
275 <output_collection name="json_snps" type="list" count="1"> | |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
276 <element name="Mbovis-17" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
277 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
278 <has_size value="6396"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
279 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
280 </element> |
3 | 281 </output_collection> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
282 <output name="output_summary" ftype="html"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
283 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
284 <has_size value="1057"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
285 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
286 </output> |
3 | 287 </test> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
288 <!-- An input collection, an excel file, all_isolates is True --> |
3 | 289 <test expect_num_outputs="4"> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
290 <param name="input_zc_vcf_type" value="collection"/> |
3 | 291 <param name="input_zc_vcf_collection"> |
292 <collection type="list"> | |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
293 <element name="BCG_Pasteur_Unknown_FR_SRR8886989.vcf" value="BCG_Pasteur_Unknown_FR_SRR8886989.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
294 <element name="BCG_Tokyo_Unknown_JP_DRR029468.vcf" value="BCG_Tokyo_Unknown_JP_DRR029468.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
295 </collection> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
296 </param> |
12 | 297 <param name="input_additional_zc_vcf_collection" value="yes"/> |
9
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
298 <param name="input_vcf_collection"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
299 <collection type="list"> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
300 <element name="01_1787_FL_Zoo_Jaguar.vcf" value="01_1787_FL_Zoo_Jaguar.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
301 <element name="02_5877_MEX_TX_Fed.vcf" value="02_5877_MEX_TX_Fed.vcf" dbkey="89"/> |
0fe292b20b9d
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 3b7fef2d17fec96647345e89c774d4af417d23d7"
greg
parents:
8
diff
changeset
|
302 <element name="02_0585_COA_TX_Fed.vcf" value="02_0585_COA_TX_Fed.vcf" dbkey="89"/> |
3 | 303 </collection> |
304 </param> | |
305 <param name="input_excel_param" value="yes"/> | |
306 <param name="input_excel" value="89"/> | |
307 <param name="all_isolates" value="--all_isolates"/> | |
308 <output_collection name="snps" type="list" count="2"> | |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
309 <element name="Mbovis-17" ftype="fasta"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
310 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
311 <has_size value="749"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
312 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
313 </element> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
314 <element name="all_vcf" ftype="fasta"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
315 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
316 <has_size value="4920"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
317 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
318 </element> |
3 | 319 </output_collection> |
320 <output_collection name="json_avg_mq" type="list" count="2"> | |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
321 <element name="Mbovis-17" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
322 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
323 <has_size value="10884"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
324 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
325 </element> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
326 <element name="all_vcf" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
327 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
328 <has_size value="24332"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
329 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
330 </element> |
3 | 331 </output_collection> |
332 <output_collection name="json_snps" type="list" count="2"> | |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
333 <element name="Mbovis-17" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
334 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
335 <has_size value="6396"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
336 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
337 </element> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
338 <element name="all_vcf" ftype="json"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
339 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
340 <has_size value="36466"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
341 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
342 </element> |
3 | 343 </output_collection> |
14
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
344 <output name="output_summary" ftype="html"> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
345 <assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
346 <has_size value="1056"/> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
347 </assert_contents> |
44b84d32883c
"planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/sequence_analysis/vsnp/vsnp_get_snps commit 7f5ebaad2e650c53a8980e8567fe9943f9ccabb6"
greg
parents:
13
diff
changeset
|
348 </output> |
3 | 349 </test> |
0 | 350 </tests> |
351 <help> | |
352 **What it does** | |
353 | |
3 | 354 Accepts a zero coverage VCF file produced by the **vSNP: add zero coverage** tool (or a collection of them) along with a collection |
355 of zero coverage VCF files that have been aligned with the same reference and contain SNPs called between closely related isolate groups. | |
356 The tool produces fasta files containing SNP alignments, json files containing the SNP positions and additional json files containing | |
357 the average map quality values. | |
358 | |
359 The SNP alignments produced by this tool are used to create phylogenetic trees, so larger input collections result in more populated | |
360 phylogenetic trees. Both of the json outputs are used by the **vSNP: build tables** tool to produce annotated SNP tables in the form | |
361 of Excel spreadsheets. | |
362 | |
363 An Excel spreadsheet containing specified SNPs can optiomally be used to filter desired SNP positions by group. Users can choose a | |
364 locally cached Excel spreadsheet or one from their current history. | |
365 | |
366 A SNP is added to a group if it has at least one position with a specified allele count value, a quality score greater than a specified | |
367 value, and a map quality greater than a specified value. | |
368 | |
369 If the allele count equals the specified value (2) and the quality score for a SNP position is greater than the minimum quality score | |
370 value (150), the alternate allele is called. | |
371 | |
372 However, if the allele count is 1, the position is called ambiguous. Deletions are called when the alternate allele is a gap. If the | |
373 quality score is less than or equal to the minimum quality score N value for alleles (150), the allele is marked "N". | |
0 | 374 |
375 **Required Options** | |
376 | |
3 | 377 * **Zero coverage VCF file(s)** - Select a single or collection of zero coverage VCF files, typically produced by the **vSNP: add zero coverage** tool, from the current history. |
378 * **Collection of zero coverage VCF files with SNPs found in closely related isolate groups** - Select a dataset collection of zero coverage vcf files from the current history. | |
0 | 379 |
380 **Additional Options** | |
381 | |
3 | 382 * **Allele count threshold** - At least 1 position must have an allele count greater than this value for a SNP to be added to a group (2 is optimal). |
383 * **Map quality threshold** - At least 1 position must have a higher MQ value for a SNP to be added to a group (56 is optimal). | |
384 * **Quality score threshold** -At least 1 position must have a higher quality score for a SNP to be added to a group (150 is optimal). | |
385 * **Minimum quality score N value for alleles** - If none of the avove 3 requirements is met and the quality score is less than or equal to the minimum quality score N value for alleles, the allele is marked "N" (150 is optimal). | |
0 | 386 * **Use Excel file for grouping and filtering?** - select Yes to filter desired SNP positions by group. A cached Excel spreadsheet provides the most widely used SNP positions for grouping, but a custom spreadhseet can be selected from the current history. |
3 | 387 * **Create a group containing all isolates?** - select Yes to output an additional group containing of all isolates. |
0 | 388 </help> |
3 | 389 <expand macro="citations"/> |
0 | 390 </tool> |
391 |