Skip to content

Commit

Permalink
Refactor Normalization step for SLURM
Browse files Browse the repository at this point in the history
  • Loading branch information
marieBvr committed Oct 2, 2020
1 parent 316384f commit 070640d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions launchers/Normalization.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def _create_cmd(self):
"""
Create command
"""
cmd = ''
cmd = '#!/bin/bash\n'
cmd += self.params['bin']['seqtk'] + ' sample -s1000 ' + self.i1 + ' ' + str(self.num)
cmd += ' > ' + self.o1
log.debug(cmd)
Expand All @@ -95,5 +95,5 @@ def _check_file(self, input_file):
open(input_file)
return input_file
except IOError:
print ('File not found ' + input_file)
print('File not found ' + input_file)
self.execution = 0

0 comments on commit 070640d

Please sign in to comment.