Skip to content

Commit

Permalink
Sanitize Blast inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mgalardini committed Aug 30, 2012
1 parent 37af0b6 commit 88c3021
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CONTIGuator.py
Expand Up @@ -1433,9 +1433,9 @@ def FillBlastPar(self, query='in.txt', db='db', out='out.txt', evalue='10',
self.mylog.WriteLog('INF', 'Blast parameters: '+str(query)+' '+
str(db)+' '+str(out)+' '+str(evalue)+' '+str(outfmt)+
str(task)+' '+str(additional)+'')
self._query=query
self._db=db
self._out=out
self._query='"%s"'%query
self._db='"%s"'%db
self._out='"%s"'%out
self._evalue=evalue
self._outfmt=outfmt
self._task=task
Expand Down

0 comments on commit 88c3021

Please sign in to comment.