We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e15ce6 commit 28327dcCopy full SHA for 28327dc
1 file changed
scripts/run_tcav_sgd_pca.py
@@ -427,7 +427,7 @@ def pair(arg):
427
motif_name = m
428
consensus_seqs = df.loc[df.motif_name==m, 'consensus_seq'].tolist() # take all consensus seqs that correspond to the same motif name
429
motifs = []
430
- for i, c in consensus_seqs:
+ for i, c in enumerate(consensus_seqs):
431
motif = utils.CustomMotif(f"{m}_{i}", c)
432
motifs.append(motif)
433
cn = f"{motif_name}"
0 commit comments