Skip to content

Commit ebec6bc

Browse files
EribertoLopezEriberto Lopez
andauthored
STDV-427: update launch title convention (#192)
* removing "can_submit_autoprotocol" from default ~/.transcritpic connection file Summary: removing flag from feature group that is used in the configuration of the .transcriptic file. Test Plan: Release Plan: None Reviewers: Vanessa Differential Revision: https://work.r23s.net/D13715 * Get feature_groups from feature_groups * Updating changelog * change launch command variable from default_title -> run_title * parameter passed as title to commands.launch is unchanged when set as the run title with no date time addition Co-authored-by: Eriberto Lopez <eddielopez@Eddies-MBP.txhq.net>
1 parent 26be239 commit ebec6bc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

transcriptic/commands.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -923,16 +923,16 @@ def launch(
923923
from time import gmtime, strftime
924924

925925
if title:
926-
default_title = f"{title}_{strftime('%b_%d_%Y', gmtime())}"
926+
run_title = title
927927
else:
928-
default_title = f"{protocol}_{strftime('%b_%d_%Y', gmtime())}"
928+
run_title = f"{protocol}_{strftime('%b_%d_%Y', gmtime())}"
929929

930930
try:
931931
req_json = api.submit_launch_request(
932932
req_id,
933933
protocol_id=protocol_obj["id"],
934934
project_id=project,
935-
title=default_title,
935+
title=run_title,
936936
test_mode=test,
937937
payment_method_id=pm,
938938
)

0 commit comments

Comments
 (0)