Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pdb-ligand-env
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pdbe
web-components
pdb-ligand-env
Merge requests
!4
Added features for aggregated ligand interaction view and interactivity with heat map
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added features for aggregated ligand interaction view and interactivity with heat map
PDBE-3362
into
master
Overview
0
Commits
14
Pipelines
0
Changes
18
Merged
Ibrahim Roshan Kunnakkattu
requested to merge
PDBE-3362
into
master
10 months ago
Overview
0
Commits
14
Pipelines
0
Changes
18
Expand
0
0
Merge request reports
Compare
master
version 1
dbe6cbd0
10 months ago
master (base)
and
latest version
latest version
51d344d8
14 commits,
10 months ago
version 1
dbe6cbd0
13 commits,
10 months ago
18 files
+
8332
−
1980
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
demo/demo_aggregated_interaction.html
0 → 100644
+
33
−
0
Options
<!doctype html>
<html
lang=
"en"
>
<head>
<script
src=
"https://d3js.org/d3.v5.min.js"
></script>
<!-- CSS style to be used for scene drawing (required for saving SVGs.) -->
<link
rel=
"stylesheet"
href=
"http://127.0.0.1:8080/pdb-ligand-env-svg.css"
/>
<!-- UI icons -->
<link
rel=
"stylesheet"
href=
"https://ebi.emblstatic.net/web_guidelines/EBI-Icon-fonts/v1.3/fonts.css"
/>
<!-- Web component polyfill (only loads what it needs) -->
<script
src=
"https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs/webcomponents-lite.js"
charset=
"utf-8"
>
</script>
<script
src=
"https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"
charset=
"utf-8"
></script>
<!--PDBe interactions component-->
<script
type=
"module"
src=
"http://127.0.0.1:8080/pdb-ligand-env-component-1.0.0-min.js"
></script>
</head>
<body>
<!--Mode A-->
<div
style=
"position: relative; float: left;"
>
<div
style=
"width: 500px; height: 500px; position: relative"
>
<pdb-ligand-env
pdb-res-name=
"STI"
,
contact-type=
"total"
></pdb-ligand-env>
</div>
</div>
</body>
</html>
\ No newline at end of file