Skip to content

Commit

Permalink
fixup! * Added support for advanced differential expression analysis …
Browse files Browse the repository at this point in the history
…with DESeq2/Limma-Voom, including testing continuous covariates, as well as likelihood ratio tests for factors, interactions, and polynomials. * Added support for sample quality weights in Limma-Voom differential expression analysis.
  • Loading branch information
GuyTeichman committed Apr 24, 2024
1 parent d1bd892 commit 4d06e73
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,8 @@ def test_SimpleLimmaWindow_load_design_mat(qtbot, simple_limma_window):
def test_SimpleLimmaWindow_get_analysis_params(qtbot, simple_limma_window):
design_mat_path = 'tests/test_files/test_design_matrix.csv'
truth = dict(r_installation_folder='auto', design_matrix=design_mat_path, output_folder=None,
comparisons=[('replicate', 'rep3', 'rep2'), ('condition', 'cond1', 'cond2')], random_effect=None)
comparisons=[('replicate', 'rep3', 'rep2'), ('condition', 'cond1', 'cond2')], random_effect=None,
quality_weights=False)

simple_limma_window.param_widgets['design_matrix'].setText(design_mat_path)
qtbot.mouseClick(simple_limma_window.param_widgets['load_design'], LEFT_CLICK)
Expand All @@ -574,7 +575,7 @@ def test_SimpleLimmaWindow_start_analysis(qtbot, simple_limma_window):
truth_args = []
truth_kwargs = dict(r_installation_folder='auto', design_matrix=design_mat_path, output_folder=None,
comparisons=[('replicate', 'rep3', 'rep2'), ('condition', 'cond1', 'cond2')],
random_effect=None)
random_effect=None, quality_weights=False)

simple_limma_window.param_widgets['design_matrix'].setText(design_mat_path)
qtbot.mouseClick(simple_limma_window.param_widgets['load_design'], LEFT_CLICK)
Expand Down

0 comments on commit 4d06e73

Please sign in to comment.