Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
genotoul-bioinfo
ng6
Commits
ec0e5da5
Commit
ec0e5da5
authored
Feb 12, 2021
by
Audrey Gibert
Browse files
#191
Correcting the issue
parent
a2966774
Changes
1
Hide whitespace changes
Inline
Side-by-side
workflows/ont_qc/components/demultiplexont.py
View file @
ec0e5da5
...
...
@@ -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"
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment