Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.1.5: Add text for stability and mutation count to the de novo signature plots #123

Merged
merged 4 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Additional functionalities for downstream analysis of _de novo_ extraction of mu

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

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
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)

## <a name="copyright"></a> Copyright
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.
Expand Down
2 changes: 2 additions & 0 deletions SigProfilerAssignment/decompose_subroutines.py
Original file line number Diff line number Diff line change
Expand Up @@ -1448,6 +1448,8 @@ def make_final_solution(
solution_prefix,
m,
True,
custom_text_upper=signature_stabilities,
custom_text_middle=signature_total_mutations,
)
else:
custom_signatures_plot(processes, layer_directory + "/Signatures")
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
if os.path.exists("dist"):
shutil.rmtree("dist")

VERSION = "0.1.4"
VERSION = "0.1.5"


def write_version_py(filename="SigProfilerAssignment/version.py"):
Expand All @@ -15,7 +15,7 @@ def write_version_py(filename="SigProfilerAssignment/version.py"):
# THIS FILE IS GENERATED FROM SigProfilerAssignment SETUP.PY
short_version = '%(version)s'
version = '%(version)s'
Update = 'v0.1.4: Add SV decomposition plotting.'
Update = 'v0.1.5: Add text for stability and mutation count to the de novo signature plots.'


"""
Expand All @@ -37,7 +37,7 @@ def write_version_py(filename="SigProfilerAssignment/version.py"):
"numpy>=1.21.2",
"pandas>=1.2.4,<2.0.0",
"SigProfilerMatrixGenerator>=1.2.17",
"sigProfilerPlotting>=1.3.20",
"sigProfilerPlotting>=1.3.23",
"statsmodels>=0.9.0",
"scikit-learn>=0.24.2",
"psutil>=5.6.1",
Expand Down