From 0d2db94338d100a64a798e6bf01e6b38e93bbe57 Mon Sep 17 00:00:00 2001 From: "Jose M. de la Rosa" Date: Tue, 18 Jun 2024 15:32:23 -0500 Subject: [PATCH] fixed import --- docs/metadata/starfile.rst | 2 ++ emtools/tests/test_pipeline.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/metadata/starfile.rst b/docs/metadata/starfile.rst index 260212c..4785d1e 100644 --- a/docs/metadata/starfile.rst +++ b/docs/metadata/starfile.rst @@ -43,6 +43,8 @@ https://github.com/3dem/em-testdata/blob/main/metadata/run_it025_data.star #>>> items: 4786 #>>> columns: 25 + sf.close() + The methods used in the previous example (`getTableNames`, `getTableSize`, and `getTableInfo`) all inspect the STAR file without fully parsing all rows. This way is much more faster diff --git a/emtools/tests/test_pipeline.py b/emtools/tests/test_pipeline.py index e9f308d..33687c5 100644 --- a/emtools/tests/test_pipeline.py +++ b/emtools/tests/test_pipeline.py @@ -18,7 +18,7 @@ import numpy as np import time -from emtools.utils import Pipeline +from emtools.jobs import Pipeline class TestThreading(unittest.TestCase):