// Vigra thinks its okay to reorder the data if it has axistags,
// but we don"t want that. To avoid reordering, we write the data
// ourselves and attach the axistags afterwards.
dataset = localDataGroup.create_dataset(info.datasetId, data=data)dataset.attrs["axistags"] = dataSlot.meta.axistags.toJSON()
wroteInternalData = True
// Construct a list of all the local dataset ids we want to keep
After Change
assert success
// Add the axistags attribute to the dataset we just created
localDataGroup[info.datasetId].attrs["axistags"] = dataSlot.meta.axistags.toJSON()
// Update the dataset info with no path, just filename base to remind us what this data is
// (operator will react to the change when we call setValue(), below)