Skip to content

Commit

Permalink
use nice tqdm
Browse files Browse the repository at this point in the history
  • Loading branch information
Intron7 committed Jul 12, 2024
1 parent 0d0546f commit 31d9925
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion decoupler/method_aucell.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from scipy.sparse import csr_matrix

from numpy.random import default_rng
from tqdm import tqdm
from tqdm.auto import tqdm

from .pre import extract, rename_net, filt_min_n, return_data

Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_gsea.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .pre import extract, rename_net, filt_min_n, return_data
from .utils import p_adjust_fdr

from tqdm import tqdm
from tqdm.auto import tqdm

import numba as nb

Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_gsva.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .pre import extract, rename_net, filt_min_n, return_data
from .method_gsea import std

from tqdm import tqdm
from tqdm.auto import tqdm

import numba as nb

Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_mdt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from .pre import extract, match, rename_net, get_net_mat, filt_min_n, return_data

from tqdm import tqdm
from tqdm.auto import tqdm


def check_if_skranger():
Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_mlm.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from scipy import stats

from tqdm import tqdm
from tqdm.auto import tqdm

import numba as nb

Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_ora.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from .pre import extract, rename_net, filt_min_n, return_data
from .utils import p_adjust_fdr

from tqdm import tqdm
from tqdm.auto import tqdm

import numba as nb

Expand Down
3 changes: 1 addition & 2 deletions decoupler/method_udt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@

from .pre import extract, match, rename_net, get_net_mat, filt_min_n, return_data

from tqdm import tqdm

from tqdm.auto import tqdm

def check_if_sklearn():
try:
Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_ulm.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from .pre import extract, match, rename_net, get_net_mat, filt_min_n, return_data

from tqdm import tqdm
from tqdm.auto import tqdm


def mat_cov(A, b):
Expand Down
3 changes: 2 additions & 1 deletion decoupler/method_viper.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

from .pre import extract, match, rename_net, get_net_mat, filt_min_n, return_data

from tqdm import tqdm
from tqdm.auto import tqdm


import numba as nb

Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_wmean.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .pre import extract, match, rename_net, get_net_mat, filt_min_n, return_data
from .method_gsea import std

from tqdm import tqdm
from tqdm.auto import tqdm

import numba as nb

Expand Down
2 changes: 1 addition & 1 deletion decoupler/method_wsum.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .pre import extract, match, rename_net, get_net_mat, filt_min_n, return_data
from .method_gsea import std

from tqdm import tqdm
from tqdm.auto import tqdm

import numba as nb

Expand Down

0 comments on commit 31d9925

Please sign in to comment.