3198: Async put, read prefetch via BlockManager. Added arvfile tests (forgot
[arvados.git] / sdk / python / arvados / __init__.py
index 060ed95d959531917749584176c5f42b8c453f66..19a7ad84390dcf0b0b35aa6c3ff3e6b9f7a48790 100644 (file)
@@ -22,6 +22,7 @@ from api import *
 from collection import *
 from keep import *
 from stream import *
+from arvfile import *
 import errors
 import util
 
@@ -87,6 +88,7 @@ class job_setup:
             return
         job_input = current_job()['script_parameters']['input']
         cr = CollectionReader(job_input)
+        cr.normalize()
         for s in cr.all_streams():
             for f in s.all_files():
                 if input_as_path:
@@ -130,5 +132,3 @@ class job_setup:
                                        body={'success':True}
                                        ).execute()
             exit(0)
-
-