Skip to content

Commit 28327dc

Browse files
authored
bug fix
1 parent 1e15ce6 commit 28327dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/run_tcav_sgd_pca.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def pair(arg):
427427
motif_name = m
428428
consensus_seqs = df.loc[df.motif_name==m, 'consensus_seq'].tolist() # take all consensus seqs that correspond to the same motif name
429429
motifs = []
430-
for i, c in consensus_seqs:
430+
for i, c in enumerate(consensus_seqs):
431431
motif = utils.CustomMotif(f"{m}_{i}", c)
432432
motifs.append(motif)
433433
cn = f"{motif_name}"

0 commit comments

Comments
 (0)