Skip to content

Commit

Permalink
correct actionability reference and doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sigven committed Jul 16, 2024
1 parent 69d364d commit ae68c95
Show file tree
Hide file tree
Showing 17 changed files with 142 additions and 141 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The Personal Cancer Genome Reporter (PCGR) is a stand-alone software package for
- Tumor mutational burden (TMB) estimation
- Mutational signature analysis
- Microsatellite instability (MSI) classification
- RNA expression analysis - outlier detection, similarity analysis, and immune contexture profiling
- RNA-seq support - gene expression outlier detection, sample similarity analysis, and immune contexture profiling

PCGR supports both of the most recent human genome assemblies (GRCh37/GRCh38), and accepts variant calls from both tumor-control and tumor-only sequencing assays. Much of the functionality is intended for whole-exome/whole-genome sequencing assays, but you can also apply PCGR to output from targeted sequencing panels. If you are interested in the interrogation of germline variants and their relation to cancer predisposition, we recommend trying the accompanying tool [Cancer Predisposition Sequencing Reporter (CPSR)](https://github.com/sigven/cpsr).

Expand All @@ -28,7 +28,11 @@ PCGR originates from the [Norwegian Cancer Genomics Consortium (NCGC)](http://ca

### Top News

- *July 2024*: **2.0.1 release**
- *July 16th 2024*: **2.0.2 release**
- patch to ensure correct reference to actionability guidelines
- [CHANGELOG](http://sigven.github.io/pcgr/articles/CHANGELOG.html)

- *July 7th 2024*: **2.0.1 release**
- patch with bug fix for mitochondrial input variants ([pr245](https://github.com/sigven/pcgr/pull/245))
- [CHANGELOG](http://sigven.github.io/pcgr/articles/CHANGELOG.html)

Expand Down Expand Up @@ -56,7 +60,7 @@ PCGR originates from the [Norwegian Cancer Genomics Consortium (NCGC)](http://ca

### Example reports

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.11401431.svg)](https://doi.org/10.5281/zenodo.11401431)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.12734221.svg)](https://doi.org/10.5281/zenodo.12734221)

### Why use PCGR?

Expand Down
2 changes: 1 addition & 1 deletion pcgrr/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ Suggests:
BSgenome.Hsapiens.UCSC.hg38
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.3.1
RoxygenNote: 7.3.2
Roxygen: list(markdown = TRUE)
2 changes: 1 addition & 1 deletion pcgrr/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export(append_gwas_citation_phenotype)
export(append_targeted_drug_annotations)
export(append_tcga_var_link)
export(append_tfbs_annotation)
export(assign_acmg_tiers)
export(assign_amp_asco_tiers)
export(assign_germline_popfreq_status)
export(assign_mutation_type)
export(assign_somatic_classification)
Expand Down
2 changes: 1 addition & 1 deletion pcgrr/R/input_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ load_dna_variants <- function(
pcgrr::log4r_info(
paste0("Assigning variants to tiers of clinical significance",
" - somatic actionability guidelines (AMP/ASCO/CAP)"))
results <- pcgrr::assign_acmg_tiers(
results <- pcgrr::assign_amp_asco_tiers(
vartype = vartype,
variants_df = results$variant,
primary_site = primary_site,
Expand Down
6 changes: 0 additions & 6 deletions pcgrr/R/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ generate_report <-
yaml_fname = yaml_fname,
report_mode = "PCGR")

#rep[['content']][['assay_properties']] <-
# rep[['settings']]$conf$assay_properties

#rep[['content']][['sample_properties']] <-
# rep[['settings']]$conf$sample_properties

settings <- rep$settings
ref_data <- rep$ref_data

Expand Down
7 changes: 6 additions & 1 deletion pcgrr/R/output_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,12 @@ get_excel_sheets <- function(report = NULL){
report$content$snv_indel$callset$variant |>
dplyr::select(
dplyr::any_of(snv_indel_cols)) |>
dplyr::filter(.data$EXONIC_STATUS == "exonic") |>
## Limit Excel output to exonic variants, as well
## as any actionable variant (TIER I-II)
dplyr::filter(.data$EXONIC_STATUS == "exonic" |
(.data$EXONIC_STATUS == "nonexonic" &
!is.na(.data$ACTIONABILITY_TIER) &
.data$ACTIONABILITY_TIER <= 2)) |>
dplyr::select(
-dplyr::any_of(c("BIOMARKER_MATCH","VEP_ALL_CSQ")))

Expand Down
Loading

0 comments on commit ae68c95

Please sign in to comment.