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
ensembl-hive
Commits
434bd1fe
Commit
434bd1fe
authored
Jun 13, 2017
by
Matthieu Muffato
Browse files
Added an option to remove the dbIDs/"unstored" labels
parent
5c51ba12
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
hive_config.json
hive_config.json
+1
-0
modules/Bio/EnsEMBL/Hive/Utils/Graph.pm
modules/Bio/EnsEMBL/Hive/Utils/Graph.pm
+2
-1
No files found.
hive_config.json
View file @
434bd1fe
...
...
@@ -111,6 +111,7 @@
"DisplayJobs"
:
0
,
"DisplayJobLength"
:
64
,
"DisplayData"
:
0
,
"DisplayDBIDs"
:
1
,
"DisplayColumnLength"
:
32
,
"DisplayConditionLength"
:
64
,
"DisplayInputIDTemplate"
:
1
,
...
...
modules/Bio/EnsEMBL/Hive/Utils/Graph.pm
View file @
434bd1fe
...
...
@@ -367,6 +367,7 @@ sub _add_analysis_node {
my
$analysis_style
=
$analysis
->
can_be_empty
()
?
'
dashed, filled
'
:
'
filled
'
;
my
$node_fontname
=
$self
->
config_get
('
Node
',
'
AnalysisStatus
',
$analysis_status
,
'
Font
');
my
$display_stats
=
$self
->
config_get
('
DisplayStats
');
my
$display_dbIDs
=
$self
->
config_get
('
DisplayDBIDs
');
my
$hive_pipeline
=
$self
->
pipeline
;
my
$colspan
=
0
;
...
...
@@ -386,7 +387,7 @@ sub _add_analysis_node {
}
$colspan ||= 1;
my $analysis_label =
'
<<
table
border
=
"
0
"
cellborder
=
"
0
"
cellspacing
=
"
0
"
cellpadding
=
"
1
"
><
tr><td colspan="'.$colspan.'">'.$analysis->r
elative_display_name
(
$hive_pipeline
)
.
'
(
'
.
(
$analysis
->
dbID
||
'
unstored
')
.
'
)</td></tr>
';
my $analysis_label =
'
<<
table
border
=
"
0
"
cellborder
=
"
0
"
cellspacing
=
"
0
"
cellpadding
=
"
1
"
><
tr><td colspan="'.$colspan.'">'.$analysis->r
elative_display_name
(
$hive_pipeline
)
.
(
$display_dbIDs
?
'
(
'
.
(
$analysis
->
dbID
||
'
unstored
')
.
'
)
'
:
'')
.
'
</td></tr>
';
if
(
$display_stats
)
{
$analysis_label
.=
qq{<tr><td colspan="$colspan"> </td></tr>}
;
if
(
$display_stats
eq
'
barchart
')
{
...
...
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