Skip to content
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

Fix two instances of immutable collections being used to initialize List arguments #4703

Merged
merged 1 commit into from
Apr 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public GenotypeCalculationArgumentCollection( final GenotypeCalculationArgumentC
*/
@Advanced
@Argument(fullName = "input-prior", doc = "Input prior for calls", optional = true)
public List<Double> inputPrior = Collections.emptyList();
public List<Double> inputPrior = new ArrayList<>();

/**
* Sample ploidy - equivalent to number of chromosomes per pool. In pooled experiments this should be = # of samples in pool * individual sample ploidy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class HaplotypeCallerArgumentCollection extends AssemblyBasedCallerArgume
*/
@Advanced
@Argument(fullName = "comp", shortName = "comp", doc = "Comparison VCF file(s)", optional = true)
public List<FeatureInput<VariantContext>> comps = Collections.emptyList();
public List<FeatureInput<VariantContext>> comps = new ArrayList<>();

/**
* The reference confidence mode makes it possible to emit a per-bp or summarized confidence estimate for a site being strictly homozygous-reference.
Expand Down