3609: Set "name" to abbreviated form, put full command line in the description field...
[arvados.git] / sdk / python / arvados / commands / run.py
index 06c4bf86d037a6673f37f092c8af2132c4ed2865..2375f5831e8609cb3c43ecc08b90200d6ca0bfa6 100644 (file)
@@ -198,7 +198,8 @@ def main(arguments=None):
     component["script_parameters"]["command"] = slots[2:]
 
     pipeline = {
-        "name": " ".join(starting_args),
+        "name": " | ".join([s[0] for s in slots[2:]]),
+        "description": "@" + " ".join(starting_args) + "@",
         "components": {
             "command": component
         },