Skip to content

Commit dadf8c5

Browse files
committed
SPT version 1.0.74 including strand-coordinated mutagenesis colormap is changed, pandas FutureWarning is eliminated, sys.stderr is redirected, warning in TopographyCommons.py is caught
1 parent 02daf6a commit dadf8c5

File tree

7 files changed

+29
-17
lines changed

7 files changed

+29
-17
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*.pbs
33
*.txt
44
*.csv
5-
*.png
5+
#*.png
66
*.wig
77
*.bigWig
88
*.bed

SigProfilerTopography.png

1.61 MB
Loading

SigProfilerTopography/Topography.py

+1
Original file line numberDiff line numberDiff line change
@@ -2700,6 +2700,7 @@ def runAnalyses(genome,
27002700
print('#################################################################################\n', file=log_out)
27012701
log_out.close()
27022702
sys.stderr.close()
2703+
sys.stderr = sys.__stderr__ # redirect to original stderr
27032704

27042705

27052706
# Plot figures for the attainded data after SigProfilerTopography Analyses

SigProfilerTopography/source/commons/TopographyCommons.py

+11-10
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from statsmodels.stats.weightstats import ztest
3232

3333
# To handle warnings as errors
34-
# import warnings
34+
import warnings
3535
# warnings.filterwarnings("error")
3636

3737
LINUX = 'linux'
@@ -654,13 +654,14 @@
654654
def calculate_pvalue_teststatistics(observed_value,
655655
expected_values,
656656
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)
664665

665666
# 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)
666667
# stats.ttest_1samp(expected_values, observed_value) # Ttest_1sampResult(statistic=-25.378549615686918, pvalue=3.99359102646761e-45)
@@ -3182,7 +3183,7 @@ def readChrBasedMutationsMergeWithProbabilitiesAndWrite(inputList):
31823183
# UAD-US_SP50263 10 110099884 Q:T[GC>AG]C 0
31833184
if simNum >= 1:
31843185
# 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]
31863187
chr_based_mutation_df[SAMPLE] = chr_based_mutation_df[SAMPLE].astype('category')
31873188

31883189
if SAMPLE not in mutations_probabilities_df.columns.values:
@@ -3277,7 +3278,7 @@ def readChrBasedMutationsMergeWithProbabilitiesAndWrite(inputList):
32773278

32783279
if simNum >= 1:
32793280
# 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]
32813282

32823283
if (sigprofiler_simulator_mutation_context in SBS_CONTEXTS):
32833284
chrBasedMergedMutationsFileName = 'chr%s_%s_for_topography.txt' %(chrShort, SUBS)

SigProfilerTopography/source/plotting/ProcessivityFigures.py

+13-3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434

3535
from matplotlib import pyplot as plt
3636

37+
import matplotlib.cm as matplotlib_cm
38+
from matplotlib import colors
39+
3740
import matplotlib as mpl
3841
import matplotlib.cm as cm
3942
from matplotlib.colors import Normalize
@@ -59,6 +62,12 @@
5962
MINIMUM_REQUIRED_PROCESSIVE_GROUP_LENGTH = 2
6063
MINIMUM_REQUIRED_NUMBER_OF_PROCESSIVE_GROUPS = 2
6164

65+
def truncate_colormap(cmap, minval=0.0, maxval=1.0, n=100):
66+
new_cmap = colors.LinearSegmentedColormap.from_list(
67+
'trunc({n},{a:.2f},{b:.2f})'.format(n=cmap.name, a=minval, b=maxval),
68+
cmap(np.linspace(minval, maxval, n)))
69+
return new_cmap
70+
6271
def readSimulationBasedDictionaries(outputDir,jobname,numberofSimulations):
6372
simulation2Signature2ProcessiveGroupLength2PropertiesDict = {}
6473

@@ -457,11 +466,12 @@ def plot_processivity_figure(outputDir,
457466

458467
panel1.set_yticks(np.arange(0, len(sorted_signature_list) + 1, 1))
459468

460-
cmap = cm.get_cmap('YlOrRd') # Looks better good
469+
cmap = matplotlib_cm.get_cmap('Purples')
470+
cmap = truncate_colormap(cmap, 0.2, 1)
471+
461472
v_min = 2
462473
v_max = 20
463-
# Very important: You have to normalize
464-
norm = mpl.colors.Normalize(vmin=v_min, vmax=v_max)
474+
norm = plt.Normalize(v_min, v_max) # legacy
465475

466476
if not signature_processive_group_length_properties_df.empty:
467477
# Plot the circles with color

SigProfilerTopography/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# THIS FILE IS GENERATED FROM SIGPROFILERTOPOGRAPHY SETUP.PY
3-
short_version = '1.0.73'
4-
version = '1.0.73'
3+
short_version = '1.0.74'
4+
version = '1.0.74'
55

66

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readme():
1010
with open('README.rst') as f:
1111
return(f.read())
1212

13-
VERSION = '1.0.73'
13+
VERSION = '1.0.74'
1414

1515
def write_version_py(filename='SigProfilerTopography/version.py'):
1616
# Copied from numpy setup.py

0 commit comments

Comments
 (0)