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):