colomemaria / epiScanpy

Episcanpy: Epigenomics Single Cell Analysis in Python
BSD 3-Clause "New" or "Revised" License
138 stars 33 forks source link

Type in import of `tss_enrichment_score` #128

Closed crsct closed 1 year ago

crsct commented 1 year ago

Currently the import statement in pl.py at line 20 is importing tss_enrichment_score as tss_enrichment_SOCRE instead of tss_enrichment_score. I fixed this in my fork and plan to make a pull request.

File episcanpy/api/pl.py:20 18 from ..preprocessing._quality_control import cal_var, variability_features 19 from ..preprocessing._tss_enrichment import tss_enrichment_plot as tss_enrichment ---> 20 from ..preprocessing._tss_enrichment import tss_enrichment_score_plot as tss_enrichment_socre

crsct commented 1 year ago

Pull Request to fix has been merged.