Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
c4c9341c
Commit
c4c9341c
authored
Jul 02, 2019
by
Matthieu Muffato
Committed by
ens-bwalts
Jul 03, 2019
Browse files
Exclude "/" from pipeline names too as it causes problems in URLs
parent
71059b8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/Bio/EnsEMBL/Hive/PipeConfig/HiveGeneric_conf.pm
modules/Bio/EnsEMBL/Hive/PipeConfig/HiveGeneric_conf.pm
+1
-1
No files found.
modules/Bio/EnsEMBL/Hive/PipeConfig/HiveGeneric_conf.pm
View file @
c4c9341c
...
...
@@ -305,7 +305,7 @@ sub process_pipeline_name {
my
(
$self
,
$ppn
)
=
@_
;
$ppn
=~
s/([[:lower:]])([[:upper:]])/${1}_${2}/g
;
# CamelCase into Camel_Case
$ppn
=~
s/\s/_/g
;
# remove all spaces
$ppn
=~
s/
[
\s
\/]
/_/g
;
# remove all spaces
and other annoying characters
$ppn
=
lc
(
$ppn
);
return
$ppn
;
...
...
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