owkin / PyDESeq2

A Python implementation of the DESeq2 pipeline for bulk RNA-seq DEA.
https://pydeseq2.readthedocs.io/en/latest/
MIT License
573 stars 60 forks source link

[BUG] No module named 'pydeseq2.default_inference' #271

Closed Agamart closed 4 months ago

Agamart commented 4 months ago

Hi,

I have a problem importing DefaultInference module. When I use 'from pydeseq2.default_inference import DefaultInference' I get :

ModuleNotFoundError Traceback (most recent call last) Input In [258], in <cell line: 1>() ----> 1 from pydeseq2.default_inference import DefaultInference

ModuleNotFoundError: No module named 'pydeseq2.default_inference'

How can I deal the problem? Thank you very much for your help.

Best, Aga

Desktop (please complete the following information):

BorisMuzellec commented 4 months ago

Hi Aga, which version of pydeseq2 do you have? You can check this with

import pydeseq2
pydeseq2.__version__
Agamart commented 4 months ago

Hi Boris,

upgrading pydeseq2 to version 0.4.8 solved the problem. Thank you!