Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tripal_abims
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
abims
e-infra
tripal_abims
Commits
8ede1e75
Commit
8ede1e75
authored
Dec 6, 2016
by
Anthony Bretaudeau
Browse files
Options
Downloads
Patches
Plain Diff
add GO and Download pages
parent
e23a673b
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+2
-0
2 additions, 0 deletions
README.md
templates/page.tpl.php
+18
-0
18 additions, 0 deletions
templates/page.tpl.php
with
20 additions
and
0 deletions
README.md
+
2
−
0
View file @
8ede1e75
...
...
@@ -19,6 +19,8 @@ services:
ENABLE_BLAST
:
1
# 1 to add links to blast form, some/url to specify the path (relative to tripal BASE_URL_PATH), 0 to disable it
ENABLE_JBROWSE
:
1
# 1 to add links to jbrowse, jbrowse?data=xxx to specify the path (relative to tripal BASE_URL_PATH), 0 to disable it
ENABLE_APOLLO
:
1
# 1 to add links to apollo, some/url to specify the path (relative to tripal BASE_URL_PATH), 0 to disable it
ENABLE_DOWNLOAD
:
1
# 1 to add links to download dir, some/url to specify the path (relative to tripal BASE_URL_PATH), 0 to disable it
ENABLE_GO
:
1
# 1 to add links to GO summary, some/url to specify the path (relative to tripal BASE_URL_PATH), 0 to disable it
JBROWSE_LINKS
:
"
SFRU_RICE>rice"
# correspondance between contig name prefix and jbrowse dataset id, example: "SFRU_RICE>rice_1;SFRU_CORN>corn_2"
# By default APOLLO_LINKS == JBROWSE_LINKS
APOLLO_LINKS
:
"
SFRU_RICE>rice"
# correspondance between contig name prefix and apollo dataset id, example: "SFRU_RICE>rice_1;SFRU_CORN>corn_2"
...
...
This diff is collapsed.
Click to expand it.
templates/page.tpl.php
+
18
−
0
View file @
8ede1e75
...
...
@@ -110,6 +110,15 @@
<!--li id="menu-item-44" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-44"><a href="
<?php
echo
$GLOBALS
[
'base_url'
];
?>
/elastic_search">Advanced search</a></li-->
</ul>
</li>
<?php
if
(
getenv
(
'ENABLE_GO'
))
:
?>
<?php
if
(
getenv
(
'ENABLE_GO'
)
==
"1"
)
$url
=
'/organism/'
;
else
$url
=
getenv
(
'ENABLE_GO'
);
?>
<li
id=
"menu-item-46"
class=
"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-46"
><a
href=
"
<?php
echo
$GLOBALS
[
'base_url'
]
.
$url
;
?>
"
>
GO Report
</a>
<?php
endif
;
?>
<?php
if
(
getenv
(
'ENABLE_BLAST'
))
:
?>
<?php
if
(
getenv
(
'ENABLE_BLAST'
)
==
"1"
)
...
...
@@ -137,6 +146,15 @@
?>
<li
id=
"menu-item-46"
class=
"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-46"
><a
href=
"
<?php
echo
$GLOBALS
[
'base_url'
]
.
$url
;
?>
"
>
Apollo
</a>
<?php
endif
;
?>
<?php
if
(
getenv
(
'ENABLE_DOWNLOAD'
))
:
?>
<?php
if
(
getenv
(
'ENABLE_DOWNLOAD'
)
==
"1"
)
$url
=
'/download'
;
else
$url
=
getenv
(
'ENABLE_DOWNLOAD'
);
?>
<li
id=
"menu-item-46"
class=
"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-46"
><a
href=
"
<?php
echo
$GLOBALS
[
'base_url'
]
.
$url
;
?>
"
>
Download
</a>
<?php
endif
;
?>
<li
id=
"menu-item-46"
class=
"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-46"
><a
href=
"http://bipaa.genouest.org/is/"
>
BIPAA
</a>
<ul
class=
"sub-menu"
>
<li
id=
"menu-item-43"
class=
"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-43"
><a
href=
"https://bipaa.genouest.org/is/aphidbase/"
>
AphidBase
</a></li>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment