Skip to content
Snippets Groups Projects
Commit dc4a29bb authored by Celine Noirot's avatar Celine Noirot
Browse files

Remove output directory from shell execution to avoid directory to be removed...

Remove output directory from shell execution to avoid directory to be removed when a rerun is called.
parent ef6ef282
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ class NormalizeRawCount (ComponentAnalysis):
def process(self):
self.add_shell_execution(self.get_exec_path("Rscript")+ " "+ self.get_exec_path("Normalization.R") + " -f $1 -o $2 > $3 2>> $4",
self.add_shell_execution(self.get_exec_path("Rscript")+ " "+ self.get_exec_path("Normalization.R") + " -f $1 -o `dirname $2` > $2 2>> $3",
cmd_format='{EXE} {IN} {OUT} ',
inputs=self.matrix, outputs=[self.output_directory,self.stdout,self.stderr]+self.files)
inputs=self.matrix, outputs=[self.stdout,self.stderr]+self.files)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment