Skip to content

Commit

Permalink
Merge pull request #40 from gokceneraslan/patch-2
Browse files Browse the repository at this point in the history
Simple change to make tqdm progress more notebook friendly
  • Loading branch information
Avsecz committed Feb 23, 2020
2 parents e51e6b6 + 3b7537c commit f793e5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kipoi_veff/mutation_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import numpy as np
import pandas as pd
from tqdm import tqdm
from tqdm.auto import tqdm

from kipoi_veff import BedOverlappingRg, SnvCenteredRg, ensure_tabixed_vcf
from kipoi_veff.scores import Logit, get_scoring_fns
Expand Down
2 changes: 1 addition & 1 deletion kipoi_veff/snv_predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import numpy as np
import pandas as pd
import six
from tqdm import tqdm
from tqdm.auto import tqdm

import kipoi_veff
from kipoi_veff.scores import Logit, get_scoring_fns
Expand Down

0 comments on commit f793e5f

Please sign in to comment.