|
31 | 31 | from statsmodels.stats.weightstats import ztest
|
32 | 32 |
|
33 | 33 | # To handle warnings as errors
|
34 |
| -# import warnings |
| 34 | +import warnings |
35 | 35 | # warnings.filterwarnings("error")
|
36 | 36 |
|
37 | 37 | LINUX = 'linux'
|
|
654 | 654 | def calculate_pvalue_teststatistics(observed_value,
|
655 | 655 | expected_values,
|
656 | 656 | alternative = 'two-sided'):
|
657 |
| - |
658 |
| - try: |
659 |
| - zstat, pvalue = ztest(expected_values, [observed_value], alternative=alternative) # pvalue 0.0115612696237375 |
660 |
| - except RuntimeWarning as w: |
661 |
| - zstat = None |
662 |
| - pvalue = None |
663 |
| - # print('expected_values:', expected_values, 'observed_value:', observed_value, 'alternative:', alternative, 'w:', w) |
| 657 | + with warnings.catch_warnings(): |
| 658 | + warnings.filterwarnings('error') |
| 659 | + try: |
| 660 | + zstat, pvalue = ztest(expected_values, [observed_value], alternative=alternative) # pvalue 0.0115612696237375 |
| 661 | + except Warning as w: |
| 662 | + zstat = None |
| 663 | + pvalue = None |
| 664 | + # print('expected_values:', expected_values, 'observed_value:', observed_value, 'alternative:', alternative, 'w:', w) |
664 | 665 |
|
665 | 666 | # zstat, pvalue = ztest(expectedValues, value=observedValue) results in very small p-values therefore we are not calling in this way. # (-25.37854961568692, 4.351195335930552e-142)
|
666 | 667 | # stats.ttest_1samp(expected_values, observed_value) # Ttest_1sampResult(statistic=-25.378549615686918, pvalue=3.99359102646761e-45)
|
@@ -3182,7 +3183,7 @@ def readChrBasedMutationsMergeWithProbabilitiesAndWrite(inputList):
|
3182 | 3183 | # UAD-US_SP50263 10 110099884 Q:T[GC>AG]C 0
|
3183 | 3184 | if simNum >= 1:
|
3184 | 3185 | # Get rid of simulation number at the end
|
3185 |
| - chr_based_mutation_df[SAMPLE] = chr_based_mutation_df[SAMPLE].str.rsplit('_', 1, expand=True)[0] |
| 3186 | + chr_based_mutation_df[SAMPLE] = chr_based_mutation_df[SAMPLE].str.rsplit(pat='_', n=1, expand=True)[0] |
3186 | 3187 | chr_based_mutation_df[SAMPLE] = chr_based_mutation_df[SAMPLE].astype('category')
|
3187 | 3188 |
|
3188 | 3189 | if SAMPLE not in mutations_probabilities_df.columns.values:
|
@@ -3277,7 +3278,7 @@ def readChrBasedMutationsMergeWithProbabilitiesAndWrite(inputList):
|
3277 | 3278 |
|
3278 | 3279 | if simNum >= 1:
|
3279 | 3280 | # Get rid of simulation number at the end
|
3280 |
| - chr_based_mutation_df[SAMPLE] = chr_based_mutation_df[SAMPLE].str.rsplit('_', 1, expand=True)[0] |
| 3281 | + chr_based_mutation_df[SAMPLE] = chr_based_mutation_df[SAMPLE].str.rsplit(pat='_', n=1, expand=True)[0] |
3281 | 3282 |
|
3282 | 3283 | if (sigprofiler_simulator_mutation_context in SBS_CONTEXTS):
|
3283 | 3284 | chrBasedMergedMutationsFileName = 'chr%s_%s_for_topography.txt' %(chrShort, SUBS)
|
|
0 commit comments