Skip to content

Commit

Permalink
remove unneeded imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsasani committed Jan 11, 2024
1 parent 3b61baf commit d1d9926
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ihd/run_ihd_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
from schema import IHDResultSchema, MutationSchema
import numba
import allel
import tqdm
import matplotlib.pyplot as plt
from scipy.spatial.distance import squareform


Expand Down Expand Up @@ -191,7 +189,7 @@ def main(args):
combined_conf_int_df = []

conf_int_chroms = ["4", "6"]
for chrom, chrom_df in tqdm.tqdm(geno_asint_filtered_merged.groupby("chromosome")):
for chrom, chrom_df in geno_asint_filtered_merged.groupby("chromosome"):
if chrom not in conf_int_chroms:
continue

Expand Down

0 comments on commit d1d9926

Please sign in to comment.