Skip to content

Commit

Permalink
Merge pull request #271 from ens-lgil/postreleasefix/94
Browse files Browse the repository at this point in the history
Fix alias discrepancy between the VEP web doc and the scripts
  • Loading branch information
sarahhunt committed Sep 4, 2018
2 parents 98e6a6d + c9ecacf commit 97046c7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion filter_vep
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ sub configure {
'registry=s',

'start|s=i', # skip first N results
'limit|l=i', # return max N results
'limit=i', # return max N results

'filter|f=s@', # filter
) or throw("ERROR: Failed to parse command-line flags\n");
Expand Down
8 changes: 4 additions & 4 deletions haplo
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ GetOptions(
'registry=s', # registry file
'host=s', # database host
'port=s', # database port
'user|u=s', # database user name
'password=s', # database password
'user|u=s', # database user name
'password|pass=s', # database password
'db_version=i', # Ensembl database version to use e.g. 62
'assembly|a=s', # assembly version to use
'genomes', # automatically sets DB params for e!Genomes
Expand All @@ -63,12 +63,12 @@ GetOptions(

# verbosity options
'verbose|v', # print out a bit more info while running
'quiet', # print nothing to STDOUT (unless using -o stdout)
'quiet|q', # print nothing to STDOUT (unless using -o stdout)

# output options
'output_file|o=s', # output file name
'warning_file=s', # file to write warnings to
'force_overwrite', # force overwrite of output file if already exists
'force_overwrite|force', # force overwrite of output file if already exists
'json', # create JSON output
'dont_export=s', # list of JSON keys to exclude

Expand Down
2 changes: 1 addition & 1 deletion variant_recoder
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ GetOptions(
'host=s', # database host
'port=s', # database port
'user|u=s', # database user name
'password=s', # database password
'password|pass=s', # database password
'db_version=i', # Ensembl database version to use e.g. 62
'assembly|a=s', # assembly version to use
'grch37', # set for using GRCh37
Expand Down
6 changes: 3 additions & 3 deletions vep
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ GetOptions(
'host=s', # database host
'port=s', # database port
'user|u=s', # database user name
'password=s', # database password
'password|pass=s', # database password
'db_version=i', # Ensembl database version to use e.g. 62
'assembly|a=s', # assembly version to use
'grch37', # set for using GRCh37
Expand Down Expand Up @@ -108,7 +108,7 @@ GetOptions(

# verbosity options
'verbose|v', # print out a bit more info while running
'quiet', # print nothing to STDOUT (unless using -o stdout)
'quiet|q', # print nothing to STDOUT (unless using -o stdout)
'no_progress', # don't display progress bars

# output options
Expand All @@ -122,7 +122,7 @@ GetOptions(
'stats_html', # write stats as html
'no_stats', # don't write stats file
'warning_file=s', # file to write warnings to
'force_overwrite', # force overwrite of output file if already exists
'force_overwrite|force', # force overwrite of output file if already exists
'terms|t=s', # consequence terms to use e.g. NCBI, SO
'coding_only', # only return results for consequences in coding regions
'canonical', # indicates if transcript is canonical
Expand Down

0 comments on commit 97046c7

Please sign in to comment.