Skip to content

Commit

Permalink
Fix typos chromsome > chromosome
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrg committed Nov 28, 2024
1 parent 9a57f19 commit 351b485
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tola/assembly/build_assembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def assemblies_with_scaffolds_fused(self) -> list[Assembly]:
elif scffld.rank == 2:
chr_namer.add_chr_prefix(scffld)

# ChrNamer names autosome chromsomes by size
# ChrNamer names autosome chromosomes by size
chr_namer.name_chromosomes()

for asm in assemblies.values():
Expand Down
2 changes: 1 addition & 1 deletion src/tola/assembly/scripts/pretext_to_asm.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def write_chr_csv_files(output_file, stats, out_assemblies, clobber):
csv_file = output_file.parent / (
output_file.stem
+ (f".{asm_key.lower()}" if asm_key else "")
+ ".chromsome.list.csv"
+ ".chromosome.list.csv"
)

with get_output_filehandle(csv_file, clobber) as csv_fh:
Expand Down

0 comments on commit 351b485

Please sign in to comment.