Skip to content

Commit

Permalink
fix argument naming to get_dt_tables
Browse files Browse the repository at this point in the history
  • Loading branch information
sigven committed May 27, 2024
1 parent b649e71 commit b9474dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pcgrr/inst/templates/pcgr_quarto_report/cna.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The same somatic mutation may frequently match with multiple evidence items from
dt_content_tier1 <-
pcgrr:::get_dt_tables(
report = pcg_report, tier = 1, variant_class = "cna")
rep = pcg_report, tier = 1, variant_class = "cna")
# if(expression_present_cna == FALSE){
# dt_content_tier1[['by_gene']]$TPM_GENE <- NULL
Expand Down Expand Up @@ -203,7 +203,7 @@ htmltools::br()
dt_content_tier2 <-
pcgrr:::get_dt_tables(
report = pcg_report, tier = 2, variant_class = "cna")
rep = pcg_report, tier = 2, variant_class = "cna")
# if(expression_present_cna == FALSE){
# dt_content_tier2[['by_gene']]$TPM_GENE <- NULL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ htmltools::br()
dt_snv_content_tier1 <-
pcgrr:::get_dt_tables(
report = pcg_report, tier = 1, variant_class = "snv_indel")
rep = pcg_report, tier = 1, variant_class = "snv_indel")
# if(expression_present_snv == FALSE){
# dt_snv_content_tier1[['by_gene']]$consTPM <- NULL
Expand Down Expand Up @@ -201,7 +201,7 @@ htmltools::br()
dt_snv_content_tier2 <-
pcgrr:::get_dt_tables(
report = pcg_report,
rep = pcg_report,
tier = 2,
variant_class = "snv_indel")
Expand Down

0 comments on commit b9474dd

Please sign in to comment.