-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/wdl launch and convert fix #1611
Conversation
…elative paths from primary descriptor
Codecov Report
@@ Coverage Diff @@
## develop #1611 +/- ##
=============================================
- Coverage 68.26% 64.36% -3.91%
Complexity 11 11
=============================================
Files 167 167
Lines 12201 12925 +724
Branches 1642 1844 +202
=============================================
- Hits 8329 8319 -10
- Misses 3155 3886 +731
- Partials 717 720 +3
Continue to review full report at Codecov.
|
import org.junit.rules.ExpectedException; | ||
|
||
/** | ||
* Basic confidential integration tests, focusing on publishing/unpublishing both automatic and manually added tools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reword
out(""); | ||
out("Optional parameters:"); | ||
out(" --json <json file> Parameters to the entry in the dockstore, one map for one run, an array of maps for multiple runs"); | ||
out(" --yaml <yaml file> Parameters to the entry in the dockstore, one map for one run, an array of maps for multiple runs (Only for CWL)"); | ||
out(" --tsv <tsv file> One row corresponds to parameters for one run in the dockstore (Only for CWL)"); | ||
out(" --descriptor <descriptor type> Descriptor type used to launch workflow. Defaults to " + CWL_STRING); | ||
out(" --local-entry Allows you to specify a full path to a local descriptor for --entry instead of an entry path"); | ||
if (!(this instanceof CheckerClient)) { | ||
out(" --local-entry Allows you to specify a full path to a local descriptor for --entry instead of an entry path"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when this is not a checker client, does it display --local-entry as a possible required parameter (OR) and also an optional parameter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This just maintains the current behavior which is to display it in both places.
It does seem a bit odd, will create follow-up item to clean up these descriptions
#1612
Working on #1549 and #1474
Allow Cromwell to run from the working directory of the downloaded descriptors as opposed to the current working directory (as opposed to re-writing imports to match working directory).