-
Notifications
You must be signed in to change notification settings - Fork 596
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added numerical-stability tests and updated test data for all ModelSe…
…gments single-sample and multiple-sample modes. (#7652) * Added an explicit check that minimum-total-allele-count-case is set to zero when running ModelSegments in matched-normal mode. * Added exact-match tests and updated test data for ModelSegments single-sample modes. * Added exact-match tests and updated test data for ModelSegments multiple-sample modes, including new tests of downstream single-sample scatters using joint segmentation. * Relaxed exact match to comparison of doubles at delta of 1E-6 to account for Java 8 and Java 11 differences on Travis. * Added a comment documenting numerical issues with log10factorial in AlleleFractionLikelihoods. * Moved assertFilesEqualUpToAllowedDeltaForDoubleValues to CopyNumberTestUtils. * Added toggle to update expected outputs.
- Loading branch information
1 parent
a28dfff
commit 8341ae5
Showing
127 changed files
with
12,793 additions
and
1,158 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
258 changes: 184 additions & 74 deletions
258
...est/java/org/broadinstitute/hellbender/tools/copynumber/ModelSegmentsIntegrationTest.java
Large diffs are not rendered by default.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
...s/copynumber/model-segments-wes-normal-allelic-counts-SM-74NEG-v1-chr20.allelicCounts.tsv
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
.../copynumber/model-segments-wes-normal-allelic-counts-with-missing-sites.allelicCounts.tsv
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
.../copynumber/model-segments-wes-tumor-1-allelic-counts-SM-74P4M-v1-chr20.allelicCounts.tsv
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
...copynumber/model-segments-wes-tumor-1-allelic-counts-with-missing-sites.allelicCounts.tsv
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
...pynumber/model-segments-wes-tumor-1-denoised-copy-ratios-SM-74P4M-v1-chr20.denoisedCR.tsv
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
...ber/model-segments-wes-tumor-1-denoised-copy-ratios-with-missing-intervals.denoisedCR.tsv
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
.../copynumber/model-segments-wes-tumor-2-allelic-counts-SM-74P4M-v1-chr20.allelicCounts.tsv
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
...pynumber/model-segments-wes-tumor-2-denoised-copy-ratios-SM-74P4M-v1-chr20.denoisedCR.tsv
Git LFS file not shown
2 changes: 2 additions & 0 deletions
2
...bender/tools/copynumber/model-segments-expected/multiple-sample-ac-nac-tumor-1.af.igv.seg
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,2 @@ | ||
Sample Chromosome Start End Num_Probes Segment_Mean | ||
SM-74P4M-1 20 138125 62871232 827 0.372342 |
2 changes: 2 additions & 0 deletions
2
...bender/tools/copynumber/model-segments-expected/multiple-sample-ac-nac-tumor-1.cr.igv.seg
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,2 @@ | ||
Sample Chromosome Start End Num_Probes Segment_Mean | ||
SM-74P4M-1 20 138125 62871232 0 NaN |
5 changes: 5 additions & 0 deletions
5
...hellbender/tools/copynumber/model-segments-expected/multiple-sample-ac-nac-tumor-1.cr.seg
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,5 @@ | ||
@HD VN:1.6 | ||
@SQ SN:20 LN:63025520 UR:http://www.broadinstitute.org/ftp/pub/seq/references/Homo_sapiens_assembly19.fasta AS:GRCh37 M5:0dec9660ec1efaaf33281c0d5ea2560f SP:Homo Sapiens | ||
@RG ID:GATKCopyNumber SM:SM-74P4M-1 | ||
CONTIG START END NUM_POINTS_COPY_RATIO MEAN_LOG2_COPY_RATIO | ||
20 138125 62871232 0 NaN |
Oops, something went wrong.