Skip to content

Commit

Permalink
Support BCF files in Spark. broadinstitute#4303
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneChou1 committed Nov 12, 2020
1 parent 2b949f0 commit 765ec5e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/org/broadinstitute/hellbender/tools/HaplotypeCallerSpark.java
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,6 @@ public Collection<Annotation> makeVariantAnnotations() {

@Override
protected void runTool(JavaSparkContext ctx) {
//TODO remove me when https://github.com/broadinstitute/gatk/issues/4303 are fixed
if (output.endsWith(FileExtensions.BCF) || output.endsWith(FileExtensions.BCF + ".gz")) {
throw new UserException.UnimplementedFeature("It is currently not possible to write a BCF file on spark. See https://github.com/broadinstitute/gatk/issues/4303 for more details .");
}
Utils.validateArg(hcArgs.dbsnp.dbsnp == null, "HaplotypeCallerSpark does not yet support -D or --dbsnp arguments" );
Utils.validateArg(hcArgs.comps.isEmpty(), "HaplotypeCallerSpark does not yet support -comp or --comp arguments" );
Utils.validateArg(hcArgs.bamOutputPath == null, "HaplotypeCallerSpark does not yet support -bamout or --bamOutput");
Expand Down

0 comments on commit 765ec5e

Please sign in to comment.