-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat: Added support for scarHRD #429
feat: Added support for scarHRD #429
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small inconsistencies, otherwise looks good.
or not sample_pair.normal_sample.dna_ngs_library | ||
): | ||
msg = ( | ||
"INFO: sample pair for cancer bio sample {} has is missing primary" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo "has is"
The score is a proxy for holomogous recombination deficiencies scores produced from SNP arrays. | ||
The software is described in `Sztupinszki et al.<https://doi.org/10.1038/s41523-018-0066-6>`, | ||
but it is not part of CRAN, Bioconductor or bioconda (currently). | ||
The implementation also relies on obsolete version of `sequenza<https://github.com/oicr-gsi/sequenza/tree/master>` & |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on this documentation, sequenza
is installed from github. The install/environment is using CRAN. Please adjust documentation or installing process.
chr_in_name = "TRUE" if snakemake.config["step_config"][step]["scarHRD"]["chr_prefix"] else "FALSE" | ||
prefix = "chr" if snakemake.config["step_config"][step]["scarHRD"]["chr_prefix"] else "" | ||
if genome_name == "grch37" or genome_name == "grch38": | ||
chromosomes = " ".join([prefix + str(x) for x in list(range(1, 25)) + ["X"]]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This puzzles me ... Shouldn't it be 23? Similar for mouse.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adjusting.
No description provided.