Skip to content

Commit

Permalink
Fixed bug in extract_gvcf_variants
Browse files Browse the repository at this point in the history
  • Loading branch information
ngaddis committed Sep 23, 2024
1 parent 61e9224 commit 5a17eb0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions t1dgrs2_pipeline/v2.0/scripts/extract_gvcf_variants.pl
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@
my $filter_by_gq = 0;
my $hom_gq_threshold = 99;
my $het_gq_threshold = 48;
my $hla_variants_file = '';
my $non_hla_variants_file = '';

GetOptions (
'sample_id=s' => \$sample_id,
'gvcf=s' => \$gvcf,
'variant_list=s' => \$variant_list,
'hla_variants_file' => \$hla_variants_file,
'non_hla_variants_file' => \$non_hla_variants_file
'non_hla_variants_file' => \$non_hla_variants_file,
'out_prefix=s' => \$out_prefix,
'pass_only:i' => \$pass_only,
'filter_by_gq:i' => \$filter_by_gq,
Expand Down

0 comments on commit 5a17eb0

Please sign in to comment.