Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions 01-overview.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ schedule <- tibble::tibble(
rep("HK", 3),
# Morning break (10 min)
"",
# HK - gProfiler (web) + gprofiler2
"HK",
# GI - GSEA (web) + fgsea
"GI",
# GI - STRING (web) + STRINGdb
"GI",
# Lunch
"",
# HK - gProfiler (web) + gprofiler2
"HK",
# GI - STRING (web) + STRINGdb
"GI",
# SA - Reactome (web) + ReactomePA
"SA",
# Wrap-up / Q&A / preview Day 2
Expand All @@ -70,21 +70,21 @@ schedule <- tibble::tibble(
"Data acquisition & filtering gene list",
"Interactive Calculator",
"Morning break",
"g:Profiler (web) + gprofiler2",
"GSEA (web) + fgsea",
"STRING (web) + STRINGdb",
"Lunch break",
"g:Profiler (web) + gprofiler2",
"STRING (web) + STRINGdb",
"Reactome (web) + ReactomePA",
"Wrap-up / Q&A / preview Day 2"
),
`Time (mins)` = c(
10, # LP
35, 10, 15, # HK before break
10, # Morning break
60, # HK: g:Profiler (web) + gprofiler2
60, # GI: GSEA (web) + fgsea
50, # GI: STRING (web) + STRINGdb
40, # Lunch break
60, # HK: g:Profiler (web) + gprofiler2
50, # GI: STRING (web) + STRINGdb
60, # SA: Reactome (web) + ReactomePA
10 # Wrap-up / Q&A / preview Day 2
)
Expand Down
2 changes: 1 addition & 1 deletion 08-1-gprofiler-web.Rmd → 06-1-gprofiler-web.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ How can one perform Under Representation Analysis in gProfiler?

### Steps to use a ranked gene list in g:Profiler:

g:Profiler's "Ordered query" option lets you analyse a ranked gene list, but it does **not** implement the Subramanian et al. 2005 GSEA algorithm covered in the GSEA (web) chapter earlier in the book. Instead, it runs standard ORA (hypergeometric/Fisher's exact test) on a series of prefixes of your ranked list (top 10, top 20, top 50 genes, and so on) and reports whichever prefix gives the strongest enrichment for each term. It does not use a running-sum enrichment score, does not weight genes by the magnitude of their ranking metric, and does not use permutation testing — so treat it as ORA over an incrementally-growing ranked list, not as an alternative implementation of GSEA.
g:Profiler's "Ordered query" option lets you analyse a ranked gene list, but it does **not** implement the Subramanian et al. 2005 GSEA algorithm covered in the GSEA (web) chapter later in the book. Instead, it runs standard ORA (hypergeometric/Fisher's exact test) on a series of prefixes of your ranked list (top 10, top 20, top 50 genes, and so on) and reports whichever prefix gives the strongest enrichment for each term. It does not use a running-sum enrichment score, does not weight genes by the magnitude of their ranking metric, and does not use permutation testing — so treat it as ORA over an incrementally-growing ranked list, not as an alternative implementation of GSEA.

<span style="color:orange;">- Prepare Your Pre-ranked List:</span> Steps to provide a ranked gene list are given [here](degust.html).

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 8 additions & 6 deletions _bookdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,20 @@ rmd_files:
- index.Rmd
- 01-overview.Rmd
- 01-02-setup.Rmd
- part-day1.Rmd
- 02-recap.Rmd
- 03-stats.Rmd
- 04-example-dataset.Rmd
- 05-genelists.Rmd
- 06-1-gsea-web.Rmd
- 06-2-fgsea.Rmd
- 07-1-string-web.Rmd
- 07-2-stringdb.Rmd
- 08-1-gprofiler-web.Rmd
- 08-2-gprofiler2.Rmd
- 06-1-gprofiler-web.Rmd
- 06-2-gprofiler2.Rmd
- 07-1-gsea-web.Rmd
- 07-2-fgsea.Rmd
- 08-1-string-web.Rmd
- 08-2-stringdb.Rmd
- 09-1-reactome-web.Rmd
- 09-2-reactomepa.Rmd
- part-day2.Rmd
- 10-clusterprofiler.Rmd
- 11-novel-species-FEA.Rmd
- 12-uncertainties.Rmd
Expand Down
14 changes: 8 additions & 6 deletions make_R_script.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,18 +99,20 @@ filenames <- read_yaml("_bookdown.yml", readLines.warn = FALSE)$rmd_files |>
"index.Rmd",
"01-overview.Rmd",
"01-02-setup.Rmd",
"part-day1.Rmd",
"02-recap.Rmd",
"03-stats.Rmd",
"04-example-dataset.Rmd",
"05-genelists.Rmd",
"06-1-gsea-web.Rmd",
# "06-2-fgsea.Rmd",
"07-1-string-web.Rmd",
# "07-2-stringdb.Rmd",
"08-1-gprofiler-web.Rmd",
# "08-2-gprofiler2.Rmd",
"06-1-gprofiler-web.Rmd",
# "06-2-gprofiler2.Rmd",
"07-1-gsea-web.Rmd",
# "07-2-fgsea.Rmd",
"08-1-string-web.Rmd",
# "08-2-stringdb.Rmd",
"09-1-reactome-web.Rmd",
# "09-2-reactomepa.Rmd",
"part-day2.Rmd",
# "10-clusterprofiler.Rmd",
# "11-novel-species-FEA.Rmd",
"12-uncertainties.Rmd",
Expand Down
Loading