forked from broadinstitute/gatk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incorporating changes from GVS to existing files (broadinstitute#8256)
* Absorbed the changes to core GATK files from the long running GVS work. * Based on the vs_834_deletions branch where code was factored to separate the gvs specific classes from the shared gatk code * There were fairly minimal conflicts between the two except for in the new VQSR package. In this case we've taken the master version of those files since the GVS version is out of date. * Removed some large files that don't seem to be referenced
- Loading branch information
1 parent
497725a
commit 0374937
Showing
17 changed files
with
422 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/main/java/org/broadinstitute/hellbender/utils/bigquery/BigQueryResultAndStatistics.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package org.broadinstitute.hellbender.utils.bigquery; | ||
|
||
import com.google.cloud.bigquery.JobStatistics; | ||
import com.google.cloud.bigquery.TableResult; | ||
|
||
public class BigQueryResultAndStatistics { | ||
public final TableResult result; | ||
public final JobStatistics.QueryStatistics queryStatistics; | ||
|
||
public BigQueryResultAndStatistics(final TableResult result, final JobStatistics.QueryStatistics queryStatistics) { | ||
this.result = result; | ||
this.queryStatistics = queryStatistics; | ||
} | ||
|
||
|
||
} |
Oops, something went wrong.