Bug fix for case sensitivity
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3242 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
8c94df6f00
commit
3d2c836db6
|
|
@ -88,7 +88,7 @@ public class VCFCombine extends RodWalker<VCFRecord, VCFWriter> {
|
||||||
vcfWriter = new VCFWriter(out);
|
vcfWriter = new VCFWriter(out);
|
||||||
|
|
||||||
if ( PRIORITY_STRING != null )
|
if ( PRIORITY_STRING != null )
|
||||||
priority = PRIORITY_STRING.toLowerCase().split(",");
|
priority = PRIORITY_STRING.split(",");
|
||||||
|
|
||||||
Set<String> samples;
|
Set<String> samples;
|
||||||
switch (COMBO_TYPE ) {
|
switch (COMBO_TYPE ) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue