Skip to content

Commit

Permalink
fix #303 .tbl output n2
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouras13 committed Jan 10, 2024
1 parent 2643d69 commit 613c2e0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions bin/post_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,6 @@ def create_tbl(
for index, row in self.length_df.iterrows():
contig = str(row["contig"])
f.write(">Feature " + contig + "\n")

subset_df = self.merged_df[self.merged_df["contig"] == contig]
for index, row in subset_df.iterrows():
start = str(row["start"])
Expand Down Expand Up @@ -1253,7 +1252,6 @@ def create_tbl(
)
if self.trna_empty == False:
subset_trna_df = trna_df[trna_df["contig"] == contig]
print(subset_trna_df)
for index, row in subset_trna_df.iterrows():
start = str(row["start"])
stop = str(row["stop"])
Expand Down Expand Up @@ -1287,7 +1285,6 @@ def create_tbl(
)
if self.crispr_count > 0:
subset_crispr_df = crispr_df[crispr_df["contig"] == contig]
print(subset_crispr_df)
for index, row in subset_crispr_df.iterrows():
start = str(row["start"])
stop = str(row["stop"])
Expand Down Expand Up @@ -1321,7 +1318,6 @@ def create_tbl(
)
if self.tmrna_flag == True:
subset_tmrna_df = tmrna_df[tmrna_df["contig"] == contig]
print(subset_tmrna_df)
for index, row in subset_tmrna_df.iterrows():
start = str(row["start"])
stop = str(row["stop"])
Expand Down

0 comments on commit 613c2e0

Please sign in to comment.