Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed a bug, when specifying an email address
  • Loading branch information
proost committed Jul 28, 2017
1 parent 18a8b75 commit fefc6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/base.py
Expand Up @@ -62,7 +62,7 @@ def __init__(self, config, data, enable_log=False, use_hisat2=False):
self.qsub_mcxdeblast = shlex.split(self.cp['TOOLS']['qsub_mcxdeblast'].strip('\''))

self.genomes = self.dp['GLOBAL']['genomes'].split(';')
self.email = None if self.dp['GLOBAL']['email'] == 'None' else self.cp['DEFAULT']['email']
self.email = None if self.dp['GLOBAL']['email'] == 'None' else self.dp['GLOBAL']['email']

self.enable_log = enable_log
self.use_hisat2 = use_hisat2
Expand Down

0 comments on commit fefc6c2

Please sign in to comment.