Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
guiHive
Commits
088cb8df
Commit
088cb8df
authored
Apr 20, 2018
by
Matthieu Muffato
Browse files
bugfix: like for analysis parameters the value must be destringified
parent
ecc6e196
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
scripts/lib/hive_extended.pm
scripts/lib/hive_extended.pm
+1
-1
No files found.
scripts/lib/hive_extended.pm
View file @
088cb8df
...
...
@@ -64,7 +64,7 @@ use Bio::EnsEMBL::Hive::DBSQL::BaseAdaptor;
$curr_raw_input_id
=
'
{}
'
unless
(
$curr_raw_input_id
);
my
$curr_input_id
=
Bio::EnsEMBL::Hive::Utils::
destringify
(
$curr_raw_input_id
);
return
$curr_input_id
->
{
$key
}
unless
(
defined
$value
);
$curr_input_id
->
{
$key
}
=
$value
;
$curr_input_id
->
{
$key
}
=
Bio::EnsEMBL::Hive::Utils::
destringify
(
$value
)
;
my
$new_raw_input_id
=
Bio::EnsEMBL::Hive::Utils::
stringify
(
$curr_input_id
);
$self
->
input_id
(
$new_raw_input_id
);
return
$value
;
...
...
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