aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gn3/heatmaps.py6
-rw-r--r--gn3/settings.py1
2 files changed, 4 insertions, 3 deletions
diff --git a/gn3/heatmaps.py b/gn3/heatmaps.py
index ff65652..2dd9d07 100644
--- a/gn3/heatmaps.py
+++ b/gn3/heatmaps.py
@@ -374,8 +374,8 @@ def clustered_heatmap(
fig = make_subplots(
rows=num_plots if vertical else 1,
cols=1 if vertical else num_plots,
- shared_xaxes = "columns" if vertical else False,
- shared_yaxes = False if vertical else "rows",
+ shared_xaxes="columns" if vertical else False,
+ shared_yaxes=False if vertical else "rows",
vertical_spacing=0.010,
horizontal_spacing=0.001,
subplot_titles=["" if vertical else x_axis["label"]] + [
@@ -407,7 +407,7 @@ def clustered_heatmap(
"mirror": False,
"showticklabels": i == 0,
"ticks": "outside" if i == 0 else ""
- }
+ }
for i in range(num_plots)}
print("vertical?: {} ==> {}".format("T" if vertical else "F", axes_layouts))
diff --git a/gn3/settings.py b/gn3/settings.py
index 56ddaba..d5f1d3c 100644
--- a/gn3/settings.py
+++ b/gn3/settings.py
@@ -36,6 +36,7 @@ GENOTYPE_FILES = os.environ.get(
# CROSS-ORIGIN SETUP
def parse_env_cors(default):
+ """Parse comma-separated configuration into list of strings."""
origins_str = os.environ.get("CORS_ORIGINS", None)
if origins_str:
return [