have code snippet.any ideas?
for clust in clusters: #for each name in a list of names i have
outNM = "fam" + str(count) + ".mcl.fas" #a series of files i want written to
outFL = open(outNM, 'a')
for c in clust: #for each letter in my list of names that i have
c = c.rstrip()
for c in clust:
outFL.write(">" + dict[c] + "\n") write each name to my file i have open.
but it doesnt want to work.