Now that getSampleDB is public in the walker base class this override in VariantAnnotator isn't necessary.
This commit is contained in:
parent
76bd13a1ed
commit
953998dcd0
|
|
@ -194,11 +194,6 @@ public class VariantAnnotator extends RodWalker<Integer, Integer> implements Ann
|
|||
System.exit(0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SampleDB getSampleDB() {
|
||||
return super.getSampleDB();
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepare the output file and the list of available features.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -127,12 +127,12 @@ public class VariantsToTable extends RodWalker<Integer, Integer> {
|
|||
* multi-allelic INFO field values can be lists of values.
|
||||
*/
|
||||
@Advanced
|
||||
@Argument(fullName="keepMultiAllelic", shortName="KMA", doc="If provided, we will not require the site to be biallelic", required=false)
|
||||
public boolean keepMultiAllelic = false;
|
||||
@Argument(fullName="keepMultiAllelic", shortName="KMA", doc="If provided, we will not require the site to be biallelic", required=false)
|
||||
public boolean keepMultiAllelic = false;
|
||||
|
||||
@Hidden
|
||||
@Argument(fullName="logACSum", shortName="logACSum", doc="Log sum of AC instead of max value in case of multiallelic variants", required=false)
|
||||
public boolean logACSum = false;
|
||||
public boolean logACSum = false;
|
||||
|
||||
/**
|
||||
* By default, this tool throws a UserException when it encounters a field without a value in some record. This
|
||||
|
|
|
|||
Loading…
Reference in New Issue