From 366192725938e987add56491fc5c822ddede945b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Tint=C3=B3?= <oriol.tinto@lmu.de> Date: Fri, 2 Jun 2023 16:02:59 +0200 Subject: [PATCH] Adding analysis_chunk_size --- enstools/encoding/chunk_size.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/enstools/encoding/chunk_size.py b/enstools/encoding/chunk_size.py index ae859fb..611fe6d 100644 --- a/enstools/encoding/chunk_size.py +++ b/enstools/encoding/chunk_size.py @@ -1,6 +1,10 @@ # Using a module file to store the desired chunk size. + +# Chunk size used to save files to disk chunk_size = "10MB" +# Chunk size used for the analysis +analysis_chunk_size = "100KB" def change_chunk_size(new_chunk_size: str): global chunk_size chunk_size = new_chunk_size -- GitLab