Skip to content

Commit

Permalink
- argument needs to be optional since the default is null....
Browse files Browse the repository at this point in the history
  • Loading branch information
yfarjoun authored and Yossi Farjoun committed Sep 10, 2022
1 parent 08b60e4 commit d319891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/picard/cmdline/CommandLineProgram.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public abstract class CommandLineProgram {
@Argument(doc="Google Genomics API client_secrets.json file path.", common = true)
public String GA4GH_CLIENT_SECRETS="client_secrets.json";

@Argument(doc="Google project for access to 'requester pays' buckets and objects.", common = true)
@Argument(doc="Google project for access to 'requester pays' buckets and objects.", common = true, optional = true)
public String REQUESTER_PAYS_PROJECT = null;

@ArgumentCollection(doc="Special Arguments that have meaning to the argument parsing system. " +
Expand Down

0 comments on commit d319891

Please sign in to comment.