Skip to content

Commit a52b3bd

Browse files
authored
Merge pull request #401 from broadinstitute/jb-dot-plot-param-fix
Fixing parameter default to skip delocalizing outputs (SCP-5979)
2 parents c440ba0 + 5ba978d commit a52b3bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ingest/dot_plot_genes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class DotPlotGenes:
2525
COLLECTION_NAME = "dot_plot_genes"
2626
BATCH_SIZE = 100
2727
ALLOWED_FILE_TYPES = ["text/csv", "text/plain", "text/tab-separated-values"]
28-
EXP_WRITER_SETTINGS = {"output_format": "dict", "sparse": True}
28+
EXP_WRITER_SETTINGS = {"output_format": "dict", "sparse": True, "delocalize": False}
2929
denominator = 2 if re.match('darwin', sys.platform) else 1
3030
num_cores = int(multiprocessing.cpu_count() / denominator) - 1
3131
dev_logger = setup_logger(__name__, "log.txt", format="support_configs")

0 commit comments

Comments
 (0)