Skip to content

Commit 47cfb1e

Browse files
committed
[WIP] fix small syntax error
1 parent 0df3890 commit 47cfb1e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

FastOMA/_utils_roothog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from itertools import chain
77

88
import networkx as nx
9-
from Bio import SeqIO, SeqRecord
9+
from Bio import SeqIO
1010
import pickle
1111
from os import listdir
1212
import os
@@ -965,7 +965,7 @@ def write_selected_isoforms(isoform_data, prot_recs_lists, output_folder="select
965965
write isoforms to a tsv file for each species
966966
"""
967967
selected_isoforms_folder = Path(output_folder)
968-
select_best_isoforms.mkdir(exist_ok=True)
968+
selected_isoforms_folder.mkdir(exist_ok=True)
969969

970970
isoform_selected = isoform_data['selected_isoforms']
971971
isoform_by_gene_all = isoform_data['isoform_by_gene']

0 commit comments

Comments
 (0)