Mercurial > repos > devteam > varscan_version_2
annotate varscan_mpileup.xml @ 2:bc1e0cd41241 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
| author | devteam |
|---|---|
| date | Fri, 03 Feb 2017 08:26:05 -0500 |
| parents | 44d514f3df8f |
| children |
| rev | line source |
|---|---|
|
2
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
1 <tool id="varscan" name="VarScan" version="2.4.2"> |
| 0 | 2 <description>for variant detection</description> |
| 3 | |
| 4 <requirements> | |
|
2
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
5 <requirement type="package" version="2.4.2">varscan</requirement> |
| 0 | 6 </requirements> |
| 7 | |
|
1
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
8 <stdio> |
|
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
9 <regex match="Exception" source="both" level="fatal" description="Tool exception"/> |
|
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
10 <regex match=".*" source="both" level="log" description="tool progress"/> |
|
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
11 </stdio> |
|
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
12 |
|
2
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
13 <version_command><![CDATA[ |
|
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
14 varscan 2>&1 | head -n 1 |
|
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
15 ]]></version_command> |
| 0 | 16 |
|
2
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
17 <command><![CDATA[ |
| 0 | 18 ## Set up samples list file. |
| 19 #if $sample_names.strip() != '': | |
|
2
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
20 echo $sample_names | awk -F ',' '{ for (i = 1; i <= NF; i++) { print \$i; } }' > samples_list.txt && |
| 0 | 21 #end if |
| 22 | |
| 23 ## Set up command + input. | |
|
2
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
24 varscan ${cmd} ${input} |
| 0 | 25 --min-coverage ${min_coverage} |
| 26 --min-reads2 ${min_supporting_reads} | |
| 27 --min-avg-qual ${min_avg_qual} | |
| 28 --min-var-freq ${min_var_freq} | |
| 29 --min-freq-for-hom ${min_freq_for_hom} | |
| 30 --p-value ${p_value} | |
| 31 #if str($strand_filter) == 'yes': | |
| 32 --strand-filter 1 | |
| 33 #end if | |
| 34 | |
| 35 ## Report only variants in consensus. | |
| 36 #if str($cmd) == 'mpileup2cns': | |
| 37 --variants | |
| 38 #end if | |
| 39 | |
| 40 ## Set up outputs. | |
| 41 --output-vcf 1 > $output | |
| 42 | |
| 43 #if $sample_names.strip() != '': | |
| 44 --vcf-sample-list samples_list.txt | |
| 45 #end if | |
|
2
bc1e0cd41241
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit 9a92cb9da7568fd0482be68dbedd5c30c4c931c7
devteam
parents:
1
diff
changeset
|
46 ]]></command> |
| 0 | 47 |
| 48 <inputs> | |
| 49 <param format="pileup" name="input" type="data" label="Pileup dataset" help=""/> | |
| 50 | |
| 51 <param name="cmd" type="select" label="Analysis type"> | |
| 52 <option value="mpileup2snp" selected="True">single nucleotide variation</option> | |
| 53 <option value="mpileup2indel">insertions and deletions</option> | |
| 54 <option value="mpileup2cns">consensus genotype</option> | |
| 55 </param> | |
| 56 | |
| 57 <param name="min_coverage" type="integer" value="8" min="1" max="200" label="Minimum read depth" help="Minimum depth at a position to make a call"/> | |
| 58 <param name="min_supporting_reads" type="integer" value="2" min="1" max="200" label="Minimum supporting reads" help="Minimum supporting reads at a position to make a call"/> | |
| 59 <param name="min_avg_qual" type="integer" value="15" min="1" max="50" label="Minimum base quality at a position to count a read"/> | |
| 60 <param name="min_var_freq" type="float" value="0.01" min="0" max="1" label="Minimum variant allele frequency threshold"/> | |
| 61 <param name="min_freq_for_hom" type="float" value="0.75" min="0" max="1" label="Minimum frequency to call homozygote"/> | |
| 62 <param name="p_value" type="float" value="0.99" min="0" max="1" label="p-value threshold for calling variants"/> | |
| 63 <param name="strand_filter" type="select" label="Ignore variants with >90% support on one strand"> | |
| 64 <option value="no" selected="True">no</option> | |
| 65 <option value="yes">yes</option> | |
| 66 </param> | |
| 67 <param name="sample_names" type="text" value="" help="Separate sample names by comma; leave blank to use default sample names."/> | |
| 68 </inputs> | |
| 69 | |
| 70 <outputs> | |
| 71 <data name="output" format="vcf"/> | |
| 72 </outputs> | |
| 73 <tests> | |
| 74 <test> | |
| 75 <param name="input" value="test_in1.pileup" /> | |
| 76 <param name="cmd" value="mpileup2cns" /> | |
| 77 <param name="min_coverage" value="8" /> | |
| 78 <param name="min_supporting_reads" value="2" /> | |
| 79 <param name="min_avg_qual" value="15" /> | |
| 80 <param name="min_var_freq" value="0.01" /> | |
| 81 <param name="min_freq_for_hom" value="0.75" /> | |
| 82 <param name="p_value" value="0.99" /> | |
| 83 <param name="strand_filter" value="no" /> | |
| 84 <param name="sample_names" value="" /> | |
| 85 <output name="output" file="test_out1.vcf" lines_diff="0" /> | |
| 86 </test> | |
| 87 </tests> | |
| 88 | |
| 89 <help> | |
| 90 **VarScan Overview** | |
| 91 | |
| 92 VarScan_ performs variant detection for massively parallel sequencing data, such as exome, WGS, and transcriptome data. It calls variants from a mpileup dataset and produces a VCF 4.1 Full documentation is available online_. | |
| 93 | |
|
1
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
94 .. _VarScan: http://dkoboldt.github.io/varscan/ |
|
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
95 .. _online: http://dkoboldt.github.io/varscan/using-varscan.html |
| 0 | 96 |
| 97 **Input** | |
| 98 | |
| 99 :: | |
| 100 | |
| 101 mpileup file - The SAMtools mpileup file | |
| 102 | |
| 103 | |
| 104 **Output** | |
| 105 | |
| 106 VarScan produces a VCF 4.1 dataset as output. | |
| 107 | |
| 108 **Parameters** | |
| 109 | |
| 110 :: | |
| 111 | |
| 112 analysis type | |
| 113 single nucleotide detection Identify SNPs from an mpileup file | |
| 114 insertions and deletion Identify indels an mpileup file | |
| 115 consensus genotype Call consensus and variants from an mpileup file | |
| 116 | |
| 117 min-coverage | |
| 118 Minimum read depth at a position to make a call [8] | |
| 119 | |
| 120 min-reads2 | |
| 121 Minimum supporting reads at a position to call variants [2] | |
| 122 | |
| 123 min-avg-qual | |
| 124 Minimum base quality at a position to count a read [15] | |
| 125 | |
| 126 min-var-freq | |
| 127 Minimum variant allele frequency threshold [0.01] | |
| 128 | |
| 129 min-freq-for-hom | |
| 130 Minimum frequency to call homozygote [0.75] | |
| 131 | |
| 132 p-value | |
| 133 Default p-value threshold for calling variants [99e-02] | |
| 134 | |
| 135 strand-filter | |
| 136 Ignore variants with >90% support on one strand [1] | |
| 137 | |
| 138 output-vcf | |
| 139 If set to 1, outputs in VCF format | |
| 140 | |
| 141 vcf-sample-list | |
| 142 For VCF output, a list of sample names in order, one per line | |
| 143 | |
| 144 variants | |
| 145 Report only variant (SNP/indel) positions [0] | |
|
1
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
146 </help> |
| 0 | 147 |
|
1
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
148 <citations> |
|
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
149 <citation type="doi">10.1101/gr.129684.111</citation> |
|
44d514f3df8f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
150 </citations> |
| 0 | 151 </tool> |
