Skip to content
Snippets Groups Projects
Commit aa3b64fb authored by Philipp Schmidt's avatar Philipp Schmidt
Browse files

Merge branch 'fix/pipelines-in-nodes' into 'master'

Allow pipelines to be part of nodes in DataFile API

See merge request !976
parents c76526dc baace50d
No related branches found
No related tags found
1 merge request!976Allow pipelines to be part of nodes in DataFile API
...@@ -107,7 +107,7 @@ class DataFile(h5py.File): ...@@ -107,7 +107,7 @@ class DataFile(h5py.File):
filename_format = '{prefix}-R{run:04d}-{aggregator}-S{sequence:05d}.h5' filename_format = '{prefix}-R{run:04d}-{aggregator}-S{sequence:05d}.h5'
aggregator_pattern = re.compile(r'^[A-Z]{2,}\d{2}$') aggregator_pattern = re.compile(r'^[A-Z]{2,}\d{2}$')
instrument_source_pattern = re.compile(r'^[\w\/-]+:\w+$') instrument_source_pattern = re.compile(r'^[\w\/-]+:[\w.]+$')
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment