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
deep_genome
cedalion
Commits
f8d9a07e
Commit
f8d9a07e
authored
Feb 22, 2019
by
thpar
Browse files
Check for CDS not null before running WGD.
parent
6fff4400
Changes
1
Hide whitespace changes
Inline
Side-by-side
main.nf
View file @
f8d9a07e
...
...
@@ -227,6 +227,7 @@ species_new_id
cdsMap
=
species_cds_map
.
reduce
([:])
{
theMap
,
newMapping
->
theMap
[
newMapping
.
name
]
=
newMapping
.
cds
;
return
theMap
}
print
(
cdsMap
)
allSpecies
.
collectSpeciesFile
()
...
...
@@ -1045,7 +1046,7 @@ process clime {
//not supply a CDS file.
allVsAllProteomeBlasts_wgd
.
filter
{
it
[
1
]
==
newSpeciesId
.
value
}
.
filter
{
cdsMap
[
it
[
1
]]
.
value
!=
''
&&
cdsMap
[
it
[
2
]]
.
value
!=
''
}
.
filter
{
cdsMap
[
it
[
1
]]
&&
cdsMap
[
it
[
2
]]
}
.
set
{
new_species_blasts
}
...
...
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