Skip to content

Commit

Permalink
0.4.16
Browse files Browse the repository at this point in the history
table gen bugfix
  • Loading branch information
jluebeck committed Apr 4, 2023
1 parent e403805 commit 4611e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make_results_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def write_json_dict(output_table_lines, json_ofname):
featureData = []
for feature, namps in amps_classes:
if feature == "ecDNA":
ecDNA_files = [x for x in os.listdir(classBedDir) if x.startswith(ampliconID) and
ecDNA_files = [x for x in os.listdir(classBedDir) if x.startswith(ampliconID + "_") and
x.rsplit("_")[-3] == "ecDNA"]

# this is necessary since AA amps can have more than one ecDNA
Expand Down

0 comments on commit 4611e0f

Please sign in to comment.