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 committed Aug 23, 2022
1 parent f2b3f84 commit 2e913de
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 @@ -133,7 +133,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 2e913de

Please sign in to comment.