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

fix: update MSI table #1459

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ rule msisensorpro_msi_tumor_normal:
"""
msisensor-pro msi -b {threads} -z 1 -d {input.msi_list} -t {input.bamT} -n {input.bamN} -o {params.tmpdir}/msi_{params.case_id};

cp {params.tmpdir}/msi_{params.case_id} {output.msi_result};
sed 's/\%/MSI/g' {params.tmpdir}/msi_{params.case_id} > {output.msi_result};

rm -rf {params.tmpdir};
"""
2 changes: 1 addition & 1 deletion BALSAMIC/snakemake_rules/report/generate_pdf.rule
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ rule msi_to_pdf:
"Converting MSI TXT file to PDF"
shell:
"""
python "{params.csv_to_pdf_script}" "{input.msi_result}" "{output.msi_result_pdf}" --delimiter "\t"
python "{params.csv_to_pdf_script}" "{input.msi_result}" "{output.msi_result_pdf}" --delimiter "\t" --header
"""

rule image_to_pdf:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Removed:
Fixed:
^^^^^^
* Corrected tool name in deduplication metrics https://github.com/Clinical-Genomics/BALSAMIC/pull/1441
* MSI table https://github.com/Clinical-Genomics/BALSAMIC/pull/


[15.0.1]
--------
Expand Down
2 changes: 1 addition & 1 deletion docs/balsamic_annotation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ See https://github.com/xjtu-omics/msisensor-pro/wiki for more details.
- all detected microsatellites
* - Number_of_Somatic_Sites
- the unstable(somatic) microsatellites
* - %
* - MSI
- The MSI score


Expand Down
Loading