Skip to content

Commit

Permalink
Remove hard coded v100 for vep command line #34
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMoth committed May 17, 2022
1 parent f48728a commit d749499
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions lib/PDBMapVEP.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def __init__(self,config_dict: Dict[str,str] = None):
sys.exit("Terminating for now until VEP cahcing is better understood")

self.vep_assembly = self._config_dict['vep_assembly']
self.vep_db_version = self._config_dict['vep_db_version']


def launch_vep(self,
Expand Down Expand Up @@ -168,11 +169,7 @@ def launch_vep(self,
# output format
vep_cmd.extend(['--vcf'])

# SOMETHING IS WRONG WITH db_version
# DO NOT CHECK THIS IN
LOGGER.critical("*** REMOVE --db_version SOON ***")
vep_cmd.extend(['--db_version','100'])
LOGGER.critical("*** REMOVE --assembly OON ***")
vep_cmd.extend(['--db_version',self.vep_db_version)
vep_cmd.extend(['--assembly',self.vep_assembly])


Expand Down Expand Up @@ -211,7 +208,6 @@ def CSQ_in_INFO(vep_output_line):
if echo_f:
echo_f.close() # Close the cache
del echo_f
LOGGER.critical("*** REMOVE --db_version SOON ***")

"""
except KeyboardInterrupt:
Expand Down

0 comments on commit d749499

Please sign in to comment.