Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
genotoul-bioinfo
metagWGS
Commits
4f3bee96
Commit
4f3bee96
authored
Oct 21, 2021
by
MARTIN Pierre
Browse files
step 06
parent
5702351d
Changes
1
Show whitespace changes
Inline
Side-by-side
subworkflows/shared.nf
View file @
4f3bee96
...
...
@@ -17,15 +17,15 @@ workflow SHARED {
ch_prokka_reads
=
Channel
.
empty
()
ch_prokka_faa
=
Channel
.
empty
()
if
(
!
params
.
skip_structural_annot
)
{
PROKKA_AND_RENAME
(
ch_assembly
)
ch_prokka_reads
=
PROKKA_AND_RENAME
.
out
.
gff
.
join
(
PROKKA_AND_RENAME
.
out
.
fna
,
remainder:
true
).
join
(
ch_reads
,
remainder:
true
)
ch_prokka_faa
=
PROKKA_AND_RENAME
.
out
.
faa
STEP_04_STRUCTURAL_ANNOT
(
ch_assembly
)
ch_prokka_reads
=
STEP_04_STRUCTURAL_ANNOT
.
out
.
gff
.
join
(
STEP_04_STRUCTURAL_ANNOT
.
out
.
fna
,
remainder:
true
).
join
(
ch_reads
,
remainder:
true
)
ch_prokka_faa
=
STEP_04_STRUCTURAL_ANNOT
.
out
.
faa
}
if
(
!
params
.
skip_alignment
)
{
STEP_05_ALIGNMENT
(
ch_prokka_reads
,
ch_prokka_faa
)
}
if
(
!
params
.
skip_func_annot
)
{
STEP_06_FUNC_ANNOT
(
PROKKA_AND_RENAME
.
out
.
fna
)
STEP_06_FUNC_ANNOT
(
STEP_04_STRUCTURAL_ANNOT
.
out
.
fna
)
}
emit:
...
...
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