File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
qcfractal/qcfractal/components/dataset_processing Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1212from qcportal .cache import DatasetCache
1313from qcportal .dataset_models import BaseDataset
1414from qcportal .record_models import RecordStatusEnum , BaseRecord
15- from qcportal .utils import chunk_iterable
15+ from qcportal .utils import chunk_iterable , make_list
1616
1717if TYPE_CHECKING :
1818 from sqlalchemy .orm .session import Session
@@ -129,6 +129,10 @@ def create_view_file(
129129 children_ids = socket .records .get_children_ids (session , record_ids )
130130 all_ids |= set (children_ids )
131131
132+ # Always include the base record information
133+ if include is not None :
134+ include = make_list (include ) + ["*" ]
135+
132136 ############################################################################
133137 # Determine the record types of all the ids (top-level and children if desired)
134138 ############################################################################
You can’t perform that action at this time.
0 commit comments