Skip to content

Commit 98a0dac

Browse files
authored
Merge pull request #123 from AlexandrovLab/4608_text
v0.1.5: Add text for stability and mutation count to the de novo signature plots
2 parents 23e9b3d + 62472cf commit 98a0dac

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Additional functionalities for downstream analysis of _de novo_ extraction of mu
161161

162162
## <a name="citation"></a> Citation
163163

164-
Díaz-Gay, M., Vangara, R., Barnes, M., ... & Alexandrov, L. B. (2023). Assigning mutational signatures to individual samples and individual somatic mutations with SigProfilerAssignment, bioRxiv, 2023-07. doi: https://doi.org/10.1101/2023.07.10.548264
164+
Díaz-Gay, M., Vangara, R., Barnes, M., ... & Alexandrov, L. B. (2023). Assigning mutational signatures to individual samples and individual somatic mutations with SigProfilerAssignment, Bioinformatics, 2023-07. doi: [https://doi.org/10.1093/bioinformatics/btad756](https://doi.org/10.1093/bioinformatics/btad756)
165165

166166
## <a name="copyright"></a> Copyright
167167
This software and its documentation are copyright 2022 as a part of the SigProfiler project. The SigProfilerAssignment framework is free software and is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

SigProfilerAssignment/decompose_subroutines.py

+2
Original file line numberDiff line numberDiff line change
@@ -1448,6 +1448,8 @@ def make_final_solution(
14481448
solution_prefix,
14491449
m,
14501450
True,
1451+
custom_text_upper=signature_stabilities,
1452+
custom_text_middle=signature_total_mutations,
14511453
)
14521454
else:
14531455
custom_signatures_plot(processes, layer_directory + "/Signatures")

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
if os.path.exists("dist"):
77
shutil.rmtree("dist")
88

9-
VERSION = "0.1.4"
9+
VERSION = "0.1.5"
1010

1111

1212
def write_version_py(filename="SigProfilerAssignment/version.py"):
@@ -15,7 +15,7 @@ def write_version_py(filename="SigProfilerAssignment/version.py"):
1515
# THIS FILE IS GENERATED FROM SigProfilerAssignment SETUP.PY
1616
short_version = '%(version)s'
1717
version = '%(version)s'
18-
Update = 'v0.1.4: Add SV decomposition plotting.'
18+
Update = 'v0.1.5: Add text for stability and mutation count to the de novo signature plots.'
1919
2020
2121
"""
@@ -37,7 +37,7 @@ def write_version_py(filename="SigProfilerAssignment/version.py"):
3737
"numpy>=1.21.2",
3838
"pandas>=1.2.4,<2.0.0",
3939
"SigProfilerMatrixGenerator>=1.2.17",
40-
"sigProfilerPlotting>=1.3.20",
40+
"sigProfilerPlotting>=1.3.23",
4141
"statsmodels>=0.9.0",
4242
"scikit-learn>=0.24.2",
4343
"psutil>=5.6.1",

0 commit comments

Comments
 (0)