From d0e3a6a2fc3066e60ac8081673d8867ae1be541b Mon Sep 17 00:00:00 2001 From: jonas-fuchs Date: Thu, 14 Nov 2024 17:42:45 +0100 Subject: [PATCH] fixed test --- virheat/scripts/plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virheat/scripts/plotting.py b/virheat/scripts/plotting.py index c5605f8..5381459 100644 --- a/virheat/scripts/plotting.py +++ b/virheat/scripts/plotting.py @@ -218,7 +218,7 @@ def create_gene_vis(ax, genes_with_mutations, n_mutations, y_size, n_tracks, sta gene_annotations = [] mult_factor = n_mutations/(stop-start) # define arrow head length for all arrows - # dependend on how long the relative genes are to each other. If they are similar in length, it is roughly one 8th + # dependent on how long the relative genes are to each other. If they are similar in length, it is roughly 1/8 # of the shortest gene to display. if show_arrows: all_gene_lengths = [genes_with_mutations[x][0][1]-genes_with_mutations[x][0][0] for x in genes_with_mutations.keys()]