Skip to content

Commit

Permalink
Enable shift-hgvs for VEP
Browse files Browse the repository at this point in the history
  • Loading branch information
ckandoth committed May 22, 2015
1 parent abe2dcb commit d459a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcf2maf.pl
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ sub GetBiotypePriority {
( -s $ref_fasta ) or die "ERROR: Reference FASTA not found: $ref_fasta\n";

# Contruct VEP command using some default options and run it
my $vep_cmd = "$perl_bin $vep_path/variant_effect_predictor.pl --quiet --offline --no_stats --everything --check_existing --total_length --allele_number --no_escape --gencode_basic --xref_refseq --assembly $ncbi_build --dir $vep_data --fasta $ref_fasta --vcf --input_file $input_vcf --output_file $vep_anno";
my $vep_cmd = "$perl_bin $vep_path/variant_effect_predictor.pl --quiet --offline --no_stats --everything --shift_hgvs --check_existing --total_length --allele_number --no_escape --gencode_basic --xref_refseq --assembly $ncbi_build --dir $vep_data --fasta $ref_fasta --vcf --input_file $input_vcf --output_file $vep_anno";
$vep_cmd .= " --fork $vep_forks" if( $vep_forks > 1 );

system( $vep_cmd ) == 0 or die "\nERROR: Failed to run the VEP annotator!\nCommand: $vep_cmd\n";
Expand Down

0 comments on commit d459a9c

Please sign in to comment.