Skip to content

Commit

Permalink
Default clin_sig_allele to 1 (#558)
Browse files Browse the repository at this point in the history
* Default clin_sig_allele to 1
  • Loading branch information
aparton authored and ens-lgil committed Aug 12, 2019
1 parent 4e9fea1 commit ab1c4dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions modules/Bio/EnsEMBL/VEP/Config.pm
Expand Up @@ -100,6 +100,7 @@ our %DEFAULTS = (
vcf_info_field => 'CSQ',
ucsc_data_root => 'http://hgdownload.cse.ucsc.edu/goldenpath/',
max_sv_size => 10000000,
clin_sig_allele => 1,

# frequency filtering
freq_freq => 0.01,
Expand Down
2 changes: 1 addition & 1 deletion t/Runner.t
Expand Up @@ -219,7 +219,7 @@ is_deeply($runner->get_OutputFactory, bless( {
'mirna' => undef,
'ambiguity' => undef,
'vcf_string' => undef,
'clin_sig_allele' => undef,
'clin_sig_allele' => 1,
}, 'Bio::EnsEMBL::VEP::OutputFactory::VEP_output' ), 'get_OutputFactory');


Expand Down
4 changes: 2 additions & 2 deletions vep
Expand Up @@ -101,9 +101,9 @@ GetOptions(
'dont_skip', # don't skip vars that fail validation
'nearest=s', # get nearest transcript, gene or symbol (for gene)
'distance=s', # set up/downstream distance
'clin_sig_allele', # use allele specific clinical significance data where it exists
'clin_sig_allele=i', # use allele specific clinical significance data where it exists
'overlaps', # report length and percent of a transcript or regulatory feature overlaped with a SV
'max_sv_size=i', # modify the size of structural variant to be handled (limited by default to reduce memory requirements)
'max_sv_size=i', # modify the size of structural variant to be handled (limited by default to reduce memory requirements)

# verbosity options
'verbose|v', # print out a bit more info while running
Expand Down

0 comments on commit ab1c4dd

Please sign in to comment.