diff options
author | zsloan | 2024-03-21 18:32:42 +0000 |
---|---|---|
committer | zsloan | 2024-03-21 18:32:42 +0000 |
commit | 55ab13bd0c60b5399485360fc76115d574e1a2e6 (patch) | |
tree | 7e5888dba41549ff54f3ab9c0e927fbd79f94c79 | |
parent | 091b7934178f3543c0037664d5aefc0a66fa96fb (diff) | |
download | genenetwork2-55ab13bd0c60b5399485360fc76115d574e1a2e6.tar.gz |
Give more space for strain names in haplotype band
-rw-r--r-- | gn2/wqflask/marker_regression/display_mapping_results.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn2/wqflask/marker_regression/display_mapping_results.py b/gn2/wqflask/marker_regression/display_mapping_results.py index 4a33f1cf..b55b772e 100644 --- a/gn2/wqflask/marker_regression/display_mapping_results.py +++ b/gn2/wqflask/marker_regression/display_mapping_results.py @@ -390,7 +390,7 @@ class DisplayMappingResults: else: self.genotype = self.dataset.group.read_genotype_file() - # Darwing Options + # Drawing Options try: if self.selectedChr > -1: self.graphWidth = min(self.GRAPH_MAX_WIDTH, max( @@ -1940,7 +1940,7 @@ class DisplayMappingResults: fill=BLACK) im_drawer.text( text="%2.2f" % (expr), - xy=((xLeftOffset + plotWidth + 60), + xy=((xLeftOffset + plotWidth + 80), geneYLocation + 11 + 2 * ind * self.EACH_GENE_HEIGHT * zoom), font=ImageFont.truetype( font=VERDANA_FILE, size=12), |