We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f7e72 commit 82f340dCopy full SHA for 82f340d
pydra/engine/audit.py
@@ -177,13 +177,18 @@ def audit_task(self, task):
177
else:
178
# work on changing this to function name
179
command = None
180
+ if hasattr(task.inputs, "in_file"):
181
+ inputs = task.inputs.in_file
182
+ else:
183
+ inputs = None
184
185
start_message = {
186
"@id": self.aid,
187
"@type": "task",
188
"label": label,
189
"command": command,
190
"startedAtTime": now(),
191
+ "Used": inputs
192
}
193
self.audit_message(start_message, AuditFlag.PROV)
194
0 commit comments