Mercurial > repos > iuc > snpsift
comparison snpSift_rmInfo.xml @ 3:20c7d583fec1 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit fbc18d9128669e461e76ed13307ee88dd774afa5
author | iuc |
---|---|
date | Mon, 12 Jun 2017 10:25:32 -0400 |
parents | bf8c1526871b |
children | 09d6806c609e |
comparison
equal
deleted
inserted
replaced
2:bf8c1526871b | 3:20c7d583fec1 |
---|---|
1 <tool id="snpSift_rmInfo" name="SnpSift rmInfo" version="@WRAPPER_VERSION@.1"> | 1 <tool id="snpSift_rmInfo" name="SnpSift rmInfo" version="@WRAPPER_VERSION@.0"> |
2 <description>remove INFO field annotations</description> | 2 <description>remove INFO field annotations</description> |
3 <macros> | 3 <macros> |
4 <import>snpSift_macros.xml</import> | 4 <import>snpSift_macros.xml</import> |
5 </macros> | 5 </macros> |
6 <expand macro="requirements" /> | 6 <expand macro="requirements" /> |
7 <expand macro="stdio" /> | 7 <expand macro="stdio" /> |
8 <expand macro="version_command" /> | 8 <expand macro="version_command" /> |
9 <command><![CDATA[ | 9 <command><![CDATA[ |
10 @CONDA_SNPSIFT_JAR_PATH@ && | 10 SnpSift -Xmx2G rmInfo |
11 java -Xmx2G -jar "\$SNPSIFT_JAR_PATH/SnpSift.jar" rmInfo "$input" | 11 '$input' |
12 #echo ' '.join($info_fields.split(',')) | 12 #echo ' '.join($info_fields.split(',')) |
13 > "$output" | 13 > '$output' |
14 ]]> | 14 ]]></command> |
15 </command> | |
16 <inputs> | 15 <inputs> |
17 <param format="vcf" name="input" type="data" label="Variant input file in VCF format"/> | 16 <param name="input" type="data" format="vcf" label="Variant input file in VCF format"/> |
18 <param name="info_fields" type="text" value="" label="Info fields to remove, e.g. EFF"> | 17 <param name="info_fields" type="text" value="" label="Info fields to remove, e.g. EFF"> |
19 <help>Separate multiple INFO fields with a comma, e.g.: EFF,DP</help> | 18 <help>Separate multiple INFO fields with a comma, e.g.: EFF,DP</help> |
20 <validator type="empty_field" /> | 19 <validator type="empty_field" /> |
21 </param> | 20 </param> |
22 </inputs> | 21 </inputs> |
23 <outputs> | 22 <outputs> |
24 <data format="vcf" name="output" /> | 23 <data name="output" format="vcf" /> |
25 </outputs> | 24 </outputs> |
26 <tests> | 25 <tests> |
27 <test> | 26 <test> |
28 <param name="input" ftype="vcf" value="test_rmInfo.vcf"/> | 27 <param name="input" ftype="vcf" value="test_rmInfo.vcf"/> |
29 <param name="info_fields" value="EFF"/> | 28 <param name="info_fields" value="EFF"/> |
36 </test> | 35 </test> |
37 </tests> | 36 </tests> |
38 <help><![CDATA[ | 37 <help><![CDATA[ |
39 This command removes INFO fields from a VCF file (i.e. removes annotations) | 38 This command removes INFO fields from a VCF file (i.e. removes annotations) |
40 | 39 |
41 Removing INFO fields is usually done because you want to re-annotate the VCF file, thus removing old INFO fields in order to add new ones later. | 40 Removing INFO fields is usually done because you want to re-annotate the VCF file, thus removing old INFO fields in order to add new ones later. |
42 | 41 |
43 SnpEff & SnpSift only add annotations and do not change current ones. So, in order to re-annotate a file, you should first remove the old annotations and then re-annotate. | 42 SnpEff & SnpSift only add annotations and do not change current ones. So, in order to re-annotate a file, you should first remove the old annotations and then re-annotate. |
44 The reason for this behavior is simply because replacing annotation values is considered a bad practice. Imagine that you have a VCF entry in your re-annotated file having the value "AA=1": How do you know if this is from the old annotations or from the new ones? This confusion often leads to problems in downstream steps of your pipelines, so it's better to avoid the problem by first removing all the previous annotations and then adding the new ones. | 43 The reason for this behavior is simply because replacing annotation values is considered a bad practice. Imagine that you have a VCF entry in your re-annotated file having the value "AA=1": How do you know if this is from the old annotations or from the new ones? This confusion often leads to problems in downstream steps of your pipelines, so it's better to avoid the problem by first removing all the previous annotations and then adding the new ones. |
45 | 44 |
46 @EXTERNAL_DOCUMENTATION@ | 45 @EXTERNAL_DOCUMENTATION@ |
47 http://snpeff.sourceforge.net/SnpSift.html#rmInfo | 46 - http://snpeff.sourceforge.net/SnpSift.html#rmInfo |
48 | 47 ]]></help> |
49 ]]> | |
50 </help> | |
51 <expand macro="citations" /> | 48 <expand macro="citations" /> |
52 </tool> | 49 </tool> |