Skip to content

Commit

Permalink
fix issue with comparison builder not showing sample phenotypes
Browse files Browse the repository at this point in the history
  • Loading branch information
mauromiguelm committed Apr 16, 2024
1 parent 11ada23 commit 892728d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/board.upload/R/upload_module_makecontrast.R
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ upload_module_makecontrast_server <- function(
list(phenoRT(), upload_wizard(), show_comparison_builder())
},
{
req(upload_wizard() == "Comparison", show_comparison_builder() == TRUE)
req(upload_wizard() == "Step 3: Comparison", show_comparison_builder() == TRUE)
phenotypes <- c(sort(unique(colnames(phenoRT()))), "<samples>")
phenotypes <- grep("_vs_", phenotypes, value = TRUE, invert = TRUE) ## no comparisons...
psel <- c(grep("sample|patient|name|id|^[.]",
Expand Down

0 comments on commit 892728d

Please sign in to comment.