Skip to content

Commit

Permalink
Update assembly_workflow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNickols authored Dec 12, 2023
1 parent fce7576 commit e6ecbe3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions assembly_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,10 +308,12 @@ def list_depends(name, step, paired):
else:
depends_list = [str(name + pair_identifier + "." + input_extension), str(name + pair_identifier_2 + "." + input_extension)]
depends_list.append(str(bins_dir + name.split("/")[-1] + ".done"))
depends_list.append(str(depths_dir + name.split("/")[-1] + ".contig_depths.txt"))
return depends_list
else:
depends_list = [str(name + "." + input_extension)]
depends_list.append(str(bins_dir + name.split("/")[-1] + ".done"))
depends_list.append(str(depths_dir + name.split("/")[-1] + ".contig_depths.txt"))
return depends_list
elif step == "copy_bins":
return [str(bins_dir + name.split("/")[-1] + ".done")]
Expand Down

0 comments on commit e6ecbe3

Please sign in to comment.