Skip to content

Commit

Permalink
updated test with new deseq2 values
Browse files Browse the repository at this point in the history
  • Loading branch information
vicpaton committed May 7, 2024
1 parent 33fef33 commit 38b5076
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions networkcommons/test/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ def test_deseq2_analysis():

# Assert that the DataFrame has the expected content
data = {
'baseMean': [93.233032, 101.285698, 11.793541],
'log2FoldChange': [0.222414, -0.682183, -0.052951],
'lfcSE': [0.150059, 0.352411, 0.521689],
'stat': [1.482173, -1.935763, -0.101499],
'pvalue': [0.138294, 0.052897, 0.919154],
'padj': [0.207441, 0.158690, 0.919154]
'baseMean': [93.233027, 101.285704, 11.793541],
'log2FoldChange': [0.218173, -0.682184, -0.052951],
'lfcSE': [0.328029, 0.352410, 0.521688],
'stat': [0.665101, -1.935768, -0.101500],
'pvalue': [0.505986, 0.052896, 0.919154],
'padj': [0.758979, 0.158688, 0.919154]
}

expected_result = pd.DataFrame(data, index=['Gene1', 'Gene2', 'Gene3'])
Expand Down

0 comments on commit 38b5076

Please sign in to comment.