You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,31 @@
3
3
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4
4
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
6
+
## 2.5 - The Potato Eaters
7
+
8
+
### Added
9
+
10
+
-[#256](https://github.com/qbic-pipelines/rnadeseq/pull/256) Add trycatch to pathway enrichment plots so they are skipped when too large instead of throwing an error
11
+
-[#255](https://github.com/qbic-pipelines/rnadeseq/pull/255) Add usage docu for datasources, heatmaps_cluster_rows/cols and pathway_adj_pval_threshold params
12
+
-[#251](https://github.com/qbic-pipelines/rnadeseq/pull/251) Get raw gene count tables from either Salmon and RSEM analysis
13
+
-[#250](https://github.com/qbic-pipelines/rnadeseq/pull/250) Added clearer error message for incorrect contrast_pairs
-[#259](https://github.com/qbic-pipelines/rnadeseq/pull/259) Bump versions for release 2.5
19
+
20
+
### Fixed
21
+
22
+
-[#258](https://github.com/qbic-pipelines/rnadeseq/pull/258) Fixed some comments for release (removed excess checks for pathway_adj_pval_threshold, added default explanation of that param to Execute_report.R, fixed some whitespace)
23
+
-[#252](https://github.com/qbic-pipelines/rnadeseq/pull/252) Fixed github CI bug by updating actions/upload-artifact
24
+
-[#250](https://github.com/qbic-pipelines/rnadeseq/pull/250) Fixed incorrect reading and indexing of contrast_pairs
25
+
6
26
## 2.4 - A Pair of Shoes
7
27
8
28
### Added
9
29
30
+
-[#253](https://github.com/qbic-pipelines/rnadeseq/pull/253) Added separate param for adjusted p-value threshold for gprofiler
10
31
-[#245](https://github.com/qbic-pipelines/rnadeseq/pull/245) Added background gene list to pathway analysis output
print(paste0("Could not save pathway_analysis", "/", fname, "/enrichment_plots/", make.names(db_source), "_pathway_enrichment_plot.pdf because of the following error:\n", e))
print(paste0("Could not save pathway_analysis", "/", fname, "/enrichment_plots/", make.names(db_source), "_pathway_enrichment_plot.png because of the following error:\n", e))
print(paste0("Could not save pathway_analysis", "/", fname, "/enrichment_plots/", make.names(db_source), "_pathway_enrichment_plot.svg because of the following error:\n", e))
2253
+
}
2254
+
)
2220
2255
2221
2256
# Plotting heatmaps and KEGG pathways for all pathways
2222
2257
print("Plotting heatmaps...")
@@ -2399,7 +2434,7 @@ Inside the pathway analysis results folder, a subfolder for each contrast used f
2399
2434
- `*_gost_pathway_venn_diagram.pdf/png`
2400
2435
- Venn diagrams showing the numbers of enriched pathways when using a background gene list vs when not using a bg list.
- Barplots showing the proportion of differentially expressed genes in the pathway for a certain pathway database.
2437
+
- Barplots showing the proportion of differentially expressed genes in the pathway for a certain pathway database (might be missing if too many pathways were enriched for fitting into a plot).
2403
2438
- `gost_pathway_gostplot.{pdf/png/svg}`
2404
2439
- Manhattan plots displaying all enriched pathways.
2405
2440
- `KEGG_pathways/`
@@ -2411,7 +2446,7 @@ gost_text,
2411
2446
2412
2447
"\n
2413
2448
## Enriched pathways
2414
-
The plot below summarizes the pathways that were found significantly enriched in DE genes for each contrast (padj value <= ", pval_text, ").
2449
+
The plot below summarizes the pathways that were found significantly enriched in DE genes for each contrast (padj value <= ", pathway_pval_text, ").
2415
2450
Only contrasts for which an enriched pathway was found are shown.
2416
2451
Hover over the dots to reveal the pathway names. The table below provides more detail on all enriched pathways."))
Copy file name to clipboardExpand all lines: bin/Execute_report.R
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ option_list = list(
37
37
make_option("--datasources", type="character", default=NULL, help="Which datasources to use for pathway analysis.", metavar="character"),
38
38
make_option("--heatmaps_cluster_rows", action="store_true", default=FALSE, help="Whether to activate row clustering when generating heatmaps of gene expression in enriched pathways."),
39
39
make_option("--heatmaps_cluster_cols", action="store_true", default=FALSE, help="Whether to activate column clustering when generating heatmaps of gene expression in enriched pathways."),
40
+
make_option("--pathway_adj_pval_threshold", type="double", default=-1, help="Which adjusted p value threshold to use for pathway analysis. Will by default use the same value as the value of --adj_pval_threshold (default 0.05)."),
0 commit comments