Skip to content

Commit

Permalink
Fixed pval format in report, added test
Browse files Browse the repository at this point in the history
  • Loading branch information
WackerO committed Nov 20, 2024
1 parent 02fc8ff commit 5f23f54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion assets/RNAseq_report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2058,7 +2058,7 @@ if (!isProvided(params$datasources)) {
# Set default params
# ------------------
pathway_pval_threshold <- ifelse(params$pathway_pval_threshold == -1, params$adj_pval_threshold, params$pathway_pval_threshold)
pathway_pval_text <- as.character(pathway_pval_threshold)
pathway_pval_text <- format(pathway_pval_threshold, scientific=F)
# Set theme for graphs
theme_set(theme_classic())
Expand Down
1 change: 1 addition & 0 deletions conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ params {
software_versions = 'https://raw.githubusercontent.com/qbic-pipelines/rnadeseq/dev/testdata/software_versions.csv'
multiqc = 'https://raw.githubusercontent.com/qbic-pipelines/rnadeseq/dev/testdata/MultiQC.zip'
run_pathway_analysis = true
pathway_pval_threshold = 0.0003
datasources = 'KEGG,REAC'
genome = 'GRCm38'
quote = 'https://raw.githubusercontent.com/qbic-pipelines/rnadeseq/dev/testdata/offer_example.pdf'
Expand Down

0 comments on commit 5f23f54

Please sign in to comment.