Skip to content
Snippets Groups Projects
Commit b15dc98f authored by Romain Therville's avatar Romain Therville :coffee:
Browse files

Merge branch 'Issue191_DemultiplexONT' into 'master'

#191 Correcting the issue on ont_qc

See merge request !112
parents a2966774 ec0e5da5
No related branches found
No related tags found
1 merge request!112#191 Correcting the issue on ont_qc
......@@ -109,13 +109,13 @@ class Demultiplex_ONT (Analysis):
str_input = ""
str_output = ""
for fastq in self.fastq_files:
str_input = str_input + " $" + str(iter)
iter = iter + 1
str_output = " $"+ str(iter)
str_input += ' ${' + str(iter) + '}'
iter += 1
str_output = ' ${'+ str(iter) + '}'
# Create cmd
self.add_shell_execution(self.get_exec_path("seqkit") +" stats --all " + str_input + ">" + str_output,
cmd_format='{EXE} {IN} {OUT}' ,
cmd_format='{EXE} {IN} {OUT}',
map=False,
inputs = [self.fastq_files],
outputs = os.path.join(self.output_directory, "DemultiplexONT.output"))
......
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