Skip to content

Commit

Permalink
Update, alphabetize AbstractEntryClient prints (#180)
Browse files Browse the repository at this point in the history
This is `--help` output, essentially.
  • Loading branch information
aofarrel authored Aug 17, 2022
1 parent 859fb42 commit bc8ffbe
Showing 1 changed file with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,32 +201,36 @@ public void printGeneralHelp() {
printUsageHelp(getEntryType().toLowerCase());
out("Commands:");
out("");
out(" list : lists all the " + getEntryType() + "s published by the user");
out(" " + CONVERT + " : utilities that allow you to convert file types");
out("");
out(" search : allows a user to search for all published " + getEntryType() + "s that match the criteria");
out(" " + CWL.toString() + " : returns the Common Workflow Language " + getEntryType() + " definition for this entry");
out(" which enables integration with Global Alliance compliant systems");
out("");
out(" publish : publish/unpublish a " + getEntryType() + " in Dockstore");
out(" " + DOWNLOAD + " : download " + getEntryType() + "s to the local directory");
out("");
out(" info : print detailed information about a particular published " + getEntryType());
out("");
out(" " + CWL.toString() + " : returns the Common Workflow Language " + getEntryType() + " definition for this entry");
out(" which enables integration with Global Alliance compliant systems");
out(" label : updates labels for an individual " + getEntryType() + "");
out("");
out(" " + WDL.toString() + " : returns the Workflow Descriptor Language definition for this Docker image");
out(" " + LAUNCH + " : launch " + getEntryType() + "s (locally)");
out("");
out(" list : lists all the " + getEntryType() + "s published by the user");
out("");
if (WORKFLOW.equalsIgnoreCase(getEntryType())) {
out(" nfl : returns the Nextflow " + getEntryType() + " defintion for this entry");
out("");
}
out(" publish : publish/unpublish a " + getEntryType() + " in Dockstore");
out("");
out(" refresh : updates your list of " + getEntryType() + "s stored on Dockstore or an individual " + getEntryType());
out("");
out(" label : updates labels for an individual " + getEntryType() + "");
out(" search : allows a user to search for all published " + getEntryType() + "s that match the criteria");
out("");
out(" star : star/unstar a " + getEntryType() + " in Dockstore");
out("");
out(" test_parameter : updates test parameter files for a version of a " + getEntryType() + "");
out("");
out(" " + CONVERT + " : utilities that allow you to convert file types");
out("");
out(" " + LAUNCH + " : launch " + getEntryType() + "s (locally)");
out("");
out(" " + DOWNLOAD + " : download " + getEntryType() + "s to the local directory");
out(" " + WDL.toString() + " : returns the Workflow Descriptor Language definition for this entry");
if (WORKFLOW.equalsIgnoreCase(getEntryType())) {
out("");
out(" wes : calls a Workflow Execution Schema API (WES) for a version of a " + getEntryType() + "");
Expand Down

0 comments on commit bc8ffbe

Please sign in to comment.