Merged
Conversation
e24b6df to
b25250f
Compare
51f7192 to
87d01d7
Compare
518875a to
0799437
Compare
…review parameters for testing
xiliuStrateos
approved these changes
Aug 11, 2021
EribertoLopez
added a commit
that referenced
this pull request
Nov 9, 2021
Updated the launch command with -sp, --save_preview option. If used the launch request will be generated like usual, but the inputs selected will be merged into the local manifest and into the protocol that was selected. This allows the user to use real and up to date container information and state without manually editing your manifest.json.
```
transcriptic launch -p p1fjfghp4azvd2 --local -sp flowcytometry
```
```
Usage: transcriptic launch [OPTIONS] PROTOCOL PARAMETERS_FILE
Configure and launch a protocol either using the local manifest file or
remotely. If no parameters are specified, uses the webapp to select the
inputs.
Options:
-p, --project PROJECT_ID Project id or name context for configuring the
protocol. Use `transcriptic projects` command to
list existing projects.
-t, --title RUN_TITLE If specified, will apply custom title to run
created, default run titlewill be the DISPLAY-
NAME_MM_DD_YYYY of the protocol selected.
--save_input FILE Save the protocol or parameters input JSON in a
file. This is useful for debugging a protocol.
--local If specified, the protocol will launch a local
protocol and submit a run.
--accept_quote If specified, the quote will automatically be
accepted, and a run will be directly submitted.
--pm PAYMENT_METHOD_ID Payment id to be used for run submission. Use
`transcriptic payments` command to list existing
payment methods.
--test Submit this run in test mode
--pkg PACKAGE_ID Package ID for discriminating between protocols
with identical names
-sp, --save_preview Save the protocol preview parameters and refs <== New flag
selected as input and merge into local
manifest.json. This is useful for debugging a
protocol.
-h, --help Show this message and exit.
```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated the launch command with
-sp, --save_previewoption. If used the launch request will be generated like usual, but the inputs selected will be merged into the local manifest and into the protocol that was selected. This allows the user to use real and up to date container information and state without manually editing your manifest.json.